通过使用prototype在继承内建类特性的同时加入新方法
Array.prototype.removeElement = function (item:*):void {
var index:int = this.indexOf(item);
if(index>-1){
this.splice(index,1);
}
}
var arr:Array = [1,2,3];
arr.removeElement(1);
trace(arr);//2,3
2024-04-09 14:23:29
通过使用prototype在继承内建类特性的同时加入新方法
Array.prototype.removeElement = function (item:*):void {
var index:int = this.indexOf(item);
if(index>-1){
this.splice(index,1);
}
}
var arr:Array = [1,2,3];
arr.removeElement(1);
trace(arr);//2,3