AutoComplete - 텍스트박스 자동 완성 기능
.NET프로그래밍/jQuery 1.3.2 2009. 11. 19. 11:07 |
[AutoComplete.htm]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>텍스트박스 자동 완성 기능</title>
<link href="jquery.autocomplete.css" rel="stylesheet" type="text/css" />
<script src="../../js/jquery-1.3.2-vsdoc2.js" type="text/javascript"></script>
<script src="jquery.autocomplete.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
var data = "ASP JSP PHP Ajax Silverlight JAVA CSS".split(' ');
$('#search').autocomplete(data);
});
</script>
</head>
<body>
상품검색 : <input type="text" id="search" />
</body>
</html>
-------------------------------------------------------------------------------------
[실행결과]
'.NET프로그래밍 > jQuery 1.3.2' 카테고리의 다른 글
jQuery를 사용한 한줄메모장 (0) | 2009.11.19 |
---|---|
파일업로드 : jQuery + Uploadify + ASP.NET (1) | 2009.11.19 |
로테이터(Rotator) 플러그인 (0) | 2009.11.19 |
카루셀(Carrousel) 플러그인 (0) | 2009.11.19 |
테이블 예제 - 테이블의 헤더 클릭시 해당 열 정렬 (0) | 2009.11.18 |