js中怎么判断一个字符串能否转成对象?
phpcn_u233
phpcn_u233 2017-02-27 13:39:30
0
2
2111

比如一个函数

function some(param) {    //判断param能否转成json对象
    //...
    return JSON.parse(param);
}

怎么判断呢

phpcn_u233
phpcn_u233

Antworte allen(2)
数据分析师

js中怎么判断一个字符串能否转成对象?-PHP中文网问答-js中怎么判断一个字符串能否转成对象?-PHP中文网问答

围观一下哦,学习一下。

阿神

这样

try{
    a=JSON.parse(param);
}catch(e){
    alert(e); //error in the above string(in this case,yes)!
}


Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage