1. 程式人生 > >ajax接收json資料在頁面顯示

ajax接收json資料在頁面顯示

dataType : "json"說明返回值型別為json(也可以為xml/html/script/jsonp/text)

$("#input").val(data.col);
	
$("#div").html("col1:"+data.col1+" "+"col2:"+data.col2);

alert(JSON.stringify(data));

$.parseJSON() 函式用於將符合標準格式的的JSON字串轉為與之對應的JavaScript物件。