首页 > 代码库 > javascript json
javascript json
循环json对象的值
var json1 = { "name": "jiao", "age": 25, "man": true, "things": { "thing1": "violin", "thing2": "coding" }}for(attr in json1){ console.log(json1[attr]);}
json对象中数据的修改
var json1 = { "name": "jiao", "age": 25, "man": true, "things": { "thing1": "violin", "thing2": "coding" }}delete json1.things.thing1;json1.things.thing3 = "haha";console.log(json1.things);
json数组
var json1 = { "name": "jiao", "age": 25, "man": true, "things": { "thing1": "violin", "thing2": "coding" }, "arr": [ "site1", "site2", "site3", "site4" ]}for(var i = 0; i < json1.arr.length; i++){ console.log(json1.arr[i]);}
教程中说可以使用delete关键字删除数组元素。可我删除了之后数组长度不变,被删除的元素变为undefined,占位仍在。
似乎只能用正常的数组方法来解决这个问题了。
javascript json
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。