Posted in Javascript onAugust 06, 2009
Array.prototype.remove = function(b) { var a = this.indexOf(b); if (a >= 0) { this.splice(a, 1); return true; } return false; };
以后使用过程中,就可以直接利用这个函数,删除数组中的值了。
javascript Array.remove() 数组删除
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@