使用autocomplete.data('typeahead').source = JSON.parse(srcArray);
,
我已经成功更新了typeahead的数据源。
但是没有任何代码语句在执行后执行
autocomplete.data('typeahead').source = JSON.parse(srcArray);
为什么?
For Example:
//Last Alert box does not execute here.
alert("Executed");
autocomplete.data('typeahead').source = JSON.parse(srcArray);
alert("Not Executed");