我有返回array
的网址。我需要根据需要添加或删除一些键。我需要在搜索功能中获取array
,以便我可以修改它。 fiddle。我怎样才能获得该网址。
$( "#tags" ).autocomplete({
source: ["ask","always", "all", "alright", "one", "foo", "blackberry", "tweet","force9", "westerners", "sport"], //URL response
search:function(event,ui){
console.log(source) //do some
}
});
使用静态array
fiddle
答案 0 :(得分:1)
您可以使用以下方式获取源选项:
$("#tags").autocomplete("option", "source");
参考(getter):https://api.jqueryui.com/autocomplete/#option-source