2012-01-19 73 views
2

我已將this.value = terms.join("; ")行從逗號(,)更改爲(;) 它爲我提供了第一個建議。但分號後,當我鍵入新單詞不建議是shown.I下載jQueryUI demo如何:jQuery自動完成多個值的「;」分號分隔符支持

select: function(event, ui) { 
       var terms = split(this.value); 
       // remove the current input 
       terms.pop(); 
       // add the selected item 
       terms.push(ui.item.value); 
         // add placeholder to get the comma-and-space at the end 
       terms.push(""); 
       this.value = terms.join("; "); 
       return false; 
} 
+0

它沒有顯示任何錯誤也是在錯誤控制檯(mozilla) –

回答

4
function split(val) { 
     return val.split(/\;\s*/); 
    } 

變化正如我上面寫的這個函數...

+0

謝謝Rajat,它像魅力一樣工作... –

相關問題