js怎麼判斷字符串是否爲json格式

function isJSON(str) { if (typeof str == 'string') { try { var obj=JSON.parse(str); if(typeof obj == 'object' && obj ){ return true;
相關文章
相關標籤/搜索