自动搜索 下拉单
<script type="text/javascript"> $(function() { $("#<%=txtSearch.ClientID%>").focus(function() { if ($(this).val() == "请输入搜索内容") { $(this).css("color", "black").val(""); } }).blur(function() { //光标离开 if ($(this).val() == "") { $(this).css("color", "Gray").val("请输入搜索内容"); } }); $("#<%=txtSearch.ClientID%>").autocomplete({ source: "/ashx/AutoComplete.ashx", minLength:2 }); }); </script>
txtSearch是搜索框的id