标签:
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
如何修改jquery-ui的autocomplete,让它支持参数自定义
标签:
原文地址:http://www.cnblogs.com/qmgcs/p/5478723.html