js对象创建:
var obj=new Object();
或
var obj={}
以下两个效果是一样的:
var obj={ color:'red', size:'15cm', };
var obj=new Object(); obj.color='red', obj.size='15cm'