本文实例讲述了JS遍历json和JQuery遍历json操作。分享给大家供大家参考,具体如下:json遍历&
本文实例讲述了JS 遍历 json 和 JQuery 遍历json操作。分享给大家供大家参考,具体如下:
json 遍历
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>demo data</title>
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
</head>
<body>
<script>
var json = {
"test1" : "data1",
test2 : "data2"
};
//jquery 其中i 是键名 v 是键值
$.each(json,function(i,v){
console.log(i + " =============== " + v);
})
//javascript 遍历 i 是键名 json[i] 是键值
var json = {
"test1" : "data1",
test2 : "data2"
};
for(i in json)
{
console.log(i + " ======================== " + json[i]);
}
</script>
</body>
</html>
运行结果:
根据json键值 获得 json键名
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>demo data</title>
</head>
<body>
<script>
var data = {
"test1" : "data1",
test2 : "data2"
};
/**
* @param json 需要检索的json对象
* @void value 检索的值
* @return 检索的值对应的键名
*/
function getKeyName(json,value)
{
for(i in json)
{
if(json[i] == value)
{
return i;
}
}
}
console.log(getKeyName(data,"data2"));
</script>
</body>
</html>
运行结果:
感兴趣的朋友可以使用在线HTML/CSS/JavaScript代码运行工具:http://tools.jb51.net/code/HtmlJsRun测试上述代码运行效果。
PS:关于json操作,这里再为大家推荐几款比较实用的json在线工具供大家参考使用:
在线JSON代码检验、检验、美化、格式化工具: http://tools.jb51.net/code/json
JSON在线格式化工具: http://tools.jb51.net/code/jsonformat
在线XML/JSON互相转换工具: http://tools.jb51.net/code/xmljson
json代码在线格式化/美化/压缩/编辑/转换工具: http://tools.jb51.net/code/jsoncodeformat
在线json压缩/转义工具: http://tools.jb51.net/code/json_yasuo_trans
JS JQuery 遍历json