在調試的時候,經常需要知道json對象的內容,通過JSON.stringify函數,可以轉換json對象為字符串。
復制代碼 代碼如下:
$(document).ready(function() {
$.ajax({
type: "post",
dataType: "json",
url: '/centermanage/modules/admin/index.php?task=getequipmentinfo',
data: "&id=" + id,
error: function(msg){ <PRE class=javascript name="code"> alert(JSON.stringify(msg));
},
success: function(msg) {
alert(JSON.stringify(msg));
})
})</PRE><P></P>
<PRE></PRE>
<BR>
<P></P>