自动搜索 下拉单

<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

posted @ 2013-01-11 09:15  南潇湘  阅读(166)  评论(0编辑  收藏  举报