码迷,mamicode.com
首页 > Web开发 > 详细

Jquery 搜索框自动提示

时间:2018-04-22 21:52:26      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:自动提示   lse   sel   sea   arch   搜索框自动提示   nbsp   json   new   

为文本框增加自动提示下拉功能,比如输入 1,则从后台数据库查询出包含1 的字段,在文本框增加下拉列表供用户选择

ajax 返回数据为搜索查询字段的json集合

<script src="../../Scripts/JqueryUInew/jquery.autocomplete.js" type="text/javascript"></script>

    <link href="../../Scripts/JqueryUInew/jquery.autocomplete.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript">
        $(function() {

        $("#txtCourseNameSearch").autocomplete("../AutoCompleteTextView/AutocompleteCourse.ashx?id=3", {
                dataType: "json",
                selectFirst: false,
                highlight: false,
                multiple: true,
                multipleSeparator: " ",
                scroll: true,
                scrollHeight: 300

            });
        });
        </script>

 

Jquery 搜索框自动提示

标签:自动提示   lse   sel   sea   arch   搜索框自动提示   nbsp   json   new   

原文地址:https://www.cnblogs.com/happygx/p/8908912.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!