日期:2012-5-14 來源:GBin1.comhtml
網站和web開發中咱們經常須要處理相似標籤添加功能的模塊,之前咱們也介紹過相關的jQuery插件 - textext,能夠方便的添加標籤增減和自動補齊相關功能。今天這裏咱們將使用另一個很是輕量級的jQuery插件來實現漂亮的標籤處理功能,這裏咱們將使用之前的超酷留言板系統爲基礎來實現一個完整功能的留言發佈系統,但願你們喜歡!git
注意:jQuery UI的autocomplete在Firefox下處理中文自動補齊功能有個bug,你須要本身解決,解決方法以下:github
找到jQueryUI中的以下代碼:web
.bind( "blur.autocomplete", function( event ) { if ( self.options.disabled ) { return; } clearTimeout( self.searching ); // clicks on the menu (or a button to trigger a search) will cause a blur event self.closing = setTimeout(function() { self.close( event ); self._change( event ); }, 150 ); });
修改成:app
.bind( "blur.autocomplete", function( event ) { if ( self.options.disabled ) { return; } clearTimeout( self.searching ); // clicks on the menu (or a button to trigger a search) will cause a blur event self.closing = setTimeout(function() { self.close( event ); self._change( event ); }, 150 ); }).bind("input.autocomplete", function() { // 修復在Firefox中不支持中文的BUG self.search(self.item); });
若是你直接下載本文演示,已經修改此Bug。 網站
在本文中,咱們修改了jQuery tag handler的一些邏輯,缺省使用這個插件,若是你嘗試輸入重複的標籤內容,你會發現沒法輸入,在咱們例子中,若是你嘗試輸入重複標籤,會發現,已存在的標籤會閃爍提示你。ui
html代碼很是簡單,只須要指定須要生成標籤的容器,以下:spa
<div id="living-effect" class="tag-wrapper"> <ul id="tags"></ul> </div>
這裏咱們使用id='tags'來指定標籤生成容器。插件
.....