|
x5组件中的input,我把input的组件设置成autocomplete为on,我如何设置input的值,使这个input组件具有自动完成的功能,假如我从后台获取一堆数据,如何设置这些数据的格式来和Input组件进行绑定,从后台返回的数据有jack,jay,jacy,假如我输入j,这些姓名都会显示,什么都不输入,把光标放在input中会显示所有的姓名? |
有好几个帖子都是回复:boostrap autocomplete
使用这个组件需要依赖:
<link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css"> <script src="//code.jquery.com/jquery-1.9.1.js"></script> <script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script> <link rel="stylesheet" href="http://jqueryui.com/resources/demos/style.css">
我需要怎么引用这些文件到W页
|
|