Files
apt-nl-map/static/Magic4/BAK/test3.html
2024-12-04 10:21:04 +08:00

24 lines
561 B
HTML

<!DOCTYPE html>
<html>
<body>
<h1>用 JSON 字符串创建对象</h1>
<p id="demo"></p>
<script>
var text = '{"employees":[' +
'{"firstName":"Bill","lastName":"Gates" },' +
'{"firstName":"Steve","lastName":"Jobs" },' +
'{"firstName":"Elon","lastName":"Musk" }]}';
obj = JSON.parse(text);
document.getElementById("demo").innerHTML =
obj.employees[0].firstName + " " + obj.employees[0].lastName+" "+
obj.employees[1].firstName + " " + obj.employees[1].lastName+" "+
obj.employees[2].firstName + " " + obj.employees[2].lastName+" ";
</script>
</body>
</html>