判断一个字符串是否是JSON格式的字符串

function isJSON(str) {
    if (typeof str == "string") {
        try {
            var jsonObj = JSON.parse(str);
            if (typeof jsonObj == "object") {
                return true;
            } else {
                return false;
            }
        } catch (e) {
            console.log("error" + str + "!!!" + e);
        }
    }
}

你可能感兴趣的:(判断一个字符串是否是JSON格式的字符串)