javascript input输入框模糊提示功能的实现
程序员文章站
2022-09-08 14:24:03
javascript input输入框模糊提示功能的实现
主要用到了jquery.autocomplete函数,定义好一个数组就可以用这个功能了,很方便。
&l...
javascript input输入框模糊提示功能的实现
主要用到了jquery.autocomplete函数,定义好一个数组就可以用这个功能了,很方便。
<!doctype html> <html> <head> <meta charset="utf-8"> <link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" rel="external nofollow" > <script src="//code.jquery.com/jquery-1.10.2.js"></script> <script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script> <script> $(function() { var availabletags = [ "james", "kobe", "jordan" ]; $( "#tags" ).autocomplete({ source: availabletags }); }); </script> </head> <body> <div class="ui-widget"> <label for="tags">tags: </label> <input id="tags"> </div> </body>
效果:
如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
推荐阅读
-
jQuery实现input输入框获取焦点与失去焦点时提示的消失与显示功能示例
-
jQuery实现input输入框获取焦点与失去焦点时提示的消失与显示功能示例
-
JavaScript实现的文本框placeholder提示文字功能示例
-
javascript input输入框模糊提示功能的实现
-
vue输入框使用模糊搜索功能的实现代码
-
JavaScript实现邮箱后缀提示功能的示例代码
-
javascript - 如何实现输入框提示功能?
-
autocomplete 实现的input输入框智能提示
-
js输入框邮箱自动提示功能代码实现_javascript技巧
-
js动态修改input输入框的type属性(实现方法解析)_javascript技巧