1
如何將Json數據傳遞到自動完成源變量。我在網可變gridModel(sjg struts tag element)
如何將Json數據傳遞到自動完成源變量
$("#searchText").autocomplete({
source: "here what should I pass"
});
或任何其他方式來獲取JSON數據調用任何Ajax調用不需要JSON數據?
如何將Json數據傳遞到自動完成源變量。我在網可變gridModel(sjg struts tag element)
如何將Json數據傳遞到自動完成源變量
$("#searchText").autocomplete({
source: "here what should I pass"
});
或任何其他方式來獲取JSON數據調用任何Ajax調用不需要JSON數據?
數據源是一個服務器端腳本,它返回JSON數據,通過源選項的簡單URL指定。
有關如何傳遞源信息的更多信息,請訪問http://jqueryui.com/demos/autocomplete/#remote。
下面是一個例子:
$("#birds").autocomplete({
source: "url to call the server that returns json"
}
});