感谢
我的visgraph.js代码里面是有是这个del的方法
Array.prototype.del = function(a) {
if ("number" != typeof a) {
for (var b = 0; b < this.length; b++)
if (this === a) return this.slice(0, b).concat(this.slice(b + 1, this.length));
return this
}
return 0 > a ? this : this.slice(0, a).concat(this.slice(a + 1, this.length))
} |