var oDome = document.getElementById('dome');
Object.prototype.move = function(json){
for(var key in json){
console.log(key)
//为什么输出的是 width,height,move ?
//不是应该只有width,height吗?
}
console.log(json)
};
oDome.move({
'width':'200px',
'height':'300px'
});
守候你守候我
相关分类