我想了解jquery提及插件jquery mentions,我在插件中遇到了這個部分。任何人都可以解釋這是什麼意思?最後的返回函數特別是做了什麼? 我想關閉自動完成下拉當匹配值具有長度小於4jquery提到jquery ui自動完成
search: function (value, event) {
var match, pos;
//&& value.length >= this.options.minChars
if (!value) {
//sel = window.getSelection();
//node = sel.focusNode;
value = this._value();
pos = Selection.get(this.element).start;
value = value.substring(0, pos);
match = this.matcher.exec(value);
if (!match || match[1].length <= this.options.minChars) {
return '';
}
this.start = match.index;
this.end = match.index + match[0].length;
this.searchTerm = match[1];
//this._setDropdownPosition(node);
}
return $.ui.autocomplete.prototype.search.call(this, this.searchTerm, event);
}
謝謝,但我解決了這個問題。 :) 現在我堅持將自動完成下拉菜單放在textarea中的光標處。我GOOGLE了並嘗試了所有的解決方案,但沒有運氣。 – orangespark