新增属性
Object.prototype.mytest = function() { alert("123"); } var o = new Object(); o.mytest();
重写属性
Object.prototype.toString = function() { alert("破话之王"); } o.toString();