下面是jquery.autocomplete.min.js的一个简单的例子。
我想问是的怎么动态的跟后台交互,不是写死的,而是从数据库里面得到的。本人小白,最好是能有一个实例。前台后台的都有最好了。谢谢
<script type="text/javascript">
         var emails = [
             { name: "Peter Pan", to: "[email protected]" },
             { name: "Molly", to: "[email protected]" },
             { name: "Forneria Marconi", to: "[email protected]" },
             { name: "Master <em>Sync</em>", to: "[email protected]" },
             { name: "Dr. <strong>Tech</strong> de Log", to: "[email protected]" },
             { name: "Don Corleone", to: "[email protected]" },
             { name: "Mc Chick", to: "[email protected]" },
             { name: "Donnie Darko", to: "[email protected]" },
             { name: "Quake The Net", to: "[email protected]" },
             { name: "Dr. Write", to: "[email protected]" },
             { name: "GG Bond", to: "[email protected]" },
             { name: "Zhuzhu Xia", to: "[email protected]" }
         ];
 
             $(function() {
                 $('#keyword').autocomplete(emails, {
                     max: 12,    //列表里的条目数
                     minChars: 0,    //自动完成激活之前填入的最小字符
                     width: 400,     //提示的宽度,溢出隐藏
                     scrollHeight: 300,   //提示的高度,溢出显示滚动条
                     matchContains: true,    //包含匹配,就是data参数里的数据,是否只要包含文本框里的数据就显示
                     autoFill: false,    //自动填充
                     formatItem: function(row, i, max) {
                         return i + '/' + max + ':"' + row.name + '"[' + row.to + ']';
                     },
                     formatMatch: function(row, i, max) {
                         return row.name + row.to;
                     },
                     formatResult: function(row) {
                         return row.to;
                     }
                 }).result(function(event, row, formatted) {
                     alert(row.to);
                 });
             });
     </script>
JavaScriptjQuery