javascript input输入框模糊提示功能的实现

javascript input输入框模糊提示功能的实现

主要用到了jQuery.autocomplete函数,定义好一个数组就可以用这个功能了,很方便。

<!doctype html> <html> <head> <meta charset="utf-8"> <link href="https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" > <script src="https://code.jquery.com/jquery-1.10.2.js"></script> <script src="https://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> <label for="tags">Tags: </label> <input> </div> </body>

效果:

javascript input输入框模糊提示功能的实现

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wyzdfs.html