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;
}
它沒有顯示任何錯誤也是在錯誤控制檯(mozilla) –