function IsJsonString(str) { try { JSON.parse(str); } catch (e) { return false; } return true; }
確定! 回上一頁