码迷,mamicode.com
首页 > Web开发 > 详细

判断变量是否为json对象

时间:2014-10-18 12:30:21      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:style   color   ar   sp   on   log   amp   bs   type   

var m ={a:‘A‘};

if(typeof m == ‘object‘ && JSON.stringify(m).indexOf(‘{‘) == 0){//判断变量m是不是json对象
                console.log(‘m is json‘);
}

JSON.stringify();这个函数可以将json对象和数组转换为字符串类型

eval();这个方法可以将json字符串和数组字符串转换为json对象和数组对象

eval(‘(‘+json_arr_str+‘)‘)

判断变量是否为json对象

标签:style   color   ar   sp   on   log   amp   bs   type   

原文地址:http://www.cnblogs.com/toward-the-sun/p/4032841.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!