我正在使用以下自动完成插件:http://www.richwidgets.io/api/classes/autocomplete.html
我想要实现的是将类.autocomplete
的所有字段转换为自动完成字段,但禁用的字段将使用插件的方法禁用(“disable
“)。
我目前使用以下内容,但似乎导致错误:
$('.autocomplete').each(function(){
$(this).autocomplete({..});
if($(this).is(':disabled')){
$(this).autocomplete('disable');
}
}
P.S。括号({..})之间的代码有效,我仔细检查过。这真的是接下来发生的事情; - )
不确定我做错了什么..
任何帮助将不胜感激。谢谢!