在調試的時候,經常需要知道json物件的內容,透過JSON.stringify函數,可以轉換json物件為字串。 複製程式碼 程式碼如下: $(document).ready(> $(document).ready(function() { $.ajax({ type: "post", dataType: "json", url: '/centermanage/modules/admin/index.php?task=getequipmentinfo', data: "&id=" id, error: function(msg){ alert(JSON.stringify(msg)); }, success: function (msg) { alert(JSON.stringify(msg)); }) })