Home  >  Article  >  Web Front-end  >  JS traverses the key-value pairs in the Json string first into JSON objects and then traverses_javascript skills

JS traverses the key-value pairs in the Json string first into JSON objects and then traverses_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:39:291553browse

1. Convert Json string into JSON object

var t='{"firstName": "cyra", "lastName": "richardson"}'; 
var obj = eval('(' + t + ')');

2. Traverse and read key-value pairs

for(var str in obj){ 
alert(str+'='+obj[str]); 
}
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn