1 在$.widget( "ui.autocomplete", {中的options中加入term:‘term‘
2 在_search: function( value ) {方法中,
this.source({term:value}, this._response())替换成
var option = {};
option[this.options.term] = value;
this.source(option, this._response());
3 然后就可以在页面中.autocomplete({term:‘abc‘})来传参了
版本是1.11.4
时间: 2024-10-21 12:41:07