PHP:陣列到jQuery的UI自動完成
json_encode($data)
輸出
[{ 「SID」: 「0032」, 「名稱」: 「德國」}]
我想在jquery-ui自動完成中使用這個。但在jQuery的UI DOC源看起來像這樣
var projects = [
{
value: "jquery",
label: "jQuery",
desc: "the write less, do more, JavaScript library",
icon: "jquery_32x32.png"
}
];
我怎樣才能PHP輸出轉換爲這種陣列中的JavaScript?
參考:http://jqueryui.com/demos/autocomplete/#custom-data
沒有必要使用eval那裏,用PHP,你可以把任何你想要的JSON編碼陣列 – Jarry