在調試的時候,經常需要知道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)); <br>}, <br>success: function (msg) { <br>alert(JSON.stringify(msg)); <br>}) <br>})
登入後複製