js判断字符串是否json格式
<script>
function isJSON(str) {
if (typeof str === 'string') {
try {
var obj = JSON.parse(str);
if (typeof obj === 'object' && obj) {
return true;
} else {
return false;
}
} catch (e) {
return false;
}
}
}
console.log(isJSON('{"a":1}'))
console.log(isJSON('111'))
</script>