Home > Web Front-end > JS Tutorial > body text

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

WBOY
Release: 2016-05-16 16:39:29
Original
1560 people have browsed it

1. Convert Json string into JSON object

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

2. Traverse and read key-value pairs

for(var str in obj){ 
alert(str+'='+obj[str]); 
}
Copy after login
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!