您好,登錄后才能下訂單哦!
本文實例講述了jquery UI實現autocomplete在獲取焦點時得到顯示列表功能。分享給大家供大家參考,具體如下:
在做項目的時候,客戶有這樣的需求,將以前輸入過的內容,在某個文本框上用列表的形式提示出來,可以選擇,換言之,就如同我們用谷歌搜索,或者百度搜索一樣,輸入一些關鍵詞,會自動提示,這個功能就叫autocomplete. 當然在 jquery UI 下有 插件,具體下載的地方,搜索就知道了。重點是,我現在的用法,是需要在文本框獲取焦點的時候,就彈出待選擇的列表。而傳統的是必須在輸入文字之后才出現。經過發現,jquery ui autocomplete 用如下方法可以實現
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>jQuery UI Autocomplete - Categories</title> <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css" rel="external nofollow" > <script src="../../jquery-1.9.1.js"></script> <script src="../../ui/jquery.ui.core.js"></script> <script src="../../ui/jquery.ui.widget.js"></script> <script src="../../ui/jquery.ui.position.js"></script> <script src="../../ui/jquery.ui.menu.js"></script> <script src="../../ui/jquery.ui.autocomplete.js"></script> <link rel="stylesheet" href="../demos.css" rel="external nofollow" > <style> .ui-autocomplete-category { font-weight: bold; padding: .2em .4em; margin: .8em 0 .2em; line-height: 1.5; } </style> <script> var data = [ { label: "anders", category: "" }, { label: "andreas", category: "" }, { label: "antal", category: "" }, { label: "annhhx10", category: "Products" }, { label: "annk K12", category: "Products" }, { label: "annttop C13", category: "Products" }, { label: "anders andersson", category: "People" }, { label: "andreas andersson", category: "People" }, { label: "andreas johnson", category: "People" } ]; function dynamicAutocomplete(){ $("#search").autocomplete({ delay:200, autoFocus: false, source: data, minLength: 0, }).focus(function () { $(this).autocomplete("search"); }); } </script> </head> <body> <button onclick="dynamicAutocomplete()">autocomplete</button> <br /> <label for="search">Search: </label> <input id="search"> <div class="demo-description"> <p>A categorized search result. Try typing "a" or "n".</p> </div> </body> </html>
代碼來源于官網例子,稍稍改動了一下,但貌似在IE 下有點問題,選擇某個選項之后,這個列表框不消失,還一直存在,比較郁悶。
在google 上搜索了一下,發現了一篇文章,也講到了這個問題。后來用如下方法解決,不過是失去焦點的方式做的。
function dynamicAutocomplete(){ $("#search").autocomplete({ minLength: 0, source: data, focus :function () { return false; }, select: function(event, ui){ $this = $(this); setTimeout(function () { $this.blur(); }, 1); } }).focus(function(){ $(this).autocomplete("search"); return false; } ); };
在ie 下面用了timeout
來解決,在網上看到很多人說,在focus
方法中 return false
就可以解決,但我就是沒有測試成功.
更多關于jQuery相關內容感興趣的讀者可查看本站專題:《jQuery頁面元素操作技巧匯總》、《jQuery常見事件用法與技巧總結》、《jQuery常用插件及用法總結》、《jQuery擴展技巧總結》及《jquery選擇器用法總結》
希望本文所述對大家jQuery程序設計有所幫助。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。