json数据操作

为一个新的json数据添加新的属性并赋值:

    var jsonObject={center:"center"};
jsonObject.north="north";
jsonObject.south="south";
jsonObject.east="east";
jsonObject.west="west";

亦或通过jquery中的extend进行添加:

        var jsonObject={center:"center"};
$.extend(jsonObject,{north:"north",south:"south",east:"east",west:"west"});

 

通过这两种方式都可以将其他的数据集成到json数据中。

你可能感兴趣的:(JavaScript,jquery,json,集成)