- /*
- * 方法:Array.remove(dx)
- * 功能:根据元素值删除数组元素.
- * 参数:元素值
- * 返回:在原数组上修改数组
- * 作者:pxp
- */
- Array.prototype.indexOf = function (val) {
- ; i < this.length; i++) {
- if (this[i] == val) {
- return i;
- }
- }
- ;
- };
- Array.prototype.removevalue = function (val) {
- var index = this.indexOf(val);
- ) {
- );
- }
- };
- /*
- * 方法:Array.remove(dx)
- * 功能:根据元素位置值删除数组元素.
- * 参数:元素值
- * 返回:在原数组上修改数组
- * 作者:pxp
- */
- Array.prototype.remove = function (dx) {
- if (isNaN(dx) || dx > this.length) {
- return false;
- }
- ; i < this.length; i++) {
- if (this[i] != this[dx]) {
- this[n++] = this[i];
- }
- }
- ;
- };