欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

javascript input輸入框模糊提示功能的實(shí)現(xiàn)

 更新時(shí)間:2017年09月25日 14:49:57   作者:Lovnx  
這篇文章主要介紹了javascript input輸入框模糊提示功能的實(shí)現(xiàn)的相關(guān)資料,希望通過本能幫助到大家,需要的朋友可以參考下

javascript input輸入框模糊提示功能的實(shí)現(xiàn)

主要用到了jQuery.autocomplete函數(shù),定義好一個(gè)數(shù)組就可以用這個(gè)功能了,很方便。

<!doctype html>
<html>
<head>
 <meta charset="utf-8">
 <link rel="stylesheet"  rel="external nofollow" >
 <script src="http://code.jquery.com/jquery-1.10.2.js"></script>
 <script src="http://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>

效果:

如有疑問請(qǐng)留言或者到本站社區(qū)交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!

相關(guān)文章

最新評(píng)論