Array.prototype.del = function(){ console.log('aa'); } var a = new Array(); a.push(1); for(var k in a){ console.log(k); } 输出 0 del 导致数组遍历异常