js 删除
标签:style class c ext color a
- /*
- * 方法:Array.remove(dx)
- * 功能:根据元素值删除数组元素.
- * 参数:元素值
- * 返回:在原数组上修改数组
- * 作者:pxp
- */
- Array.prototype.indexOf = function (val) {
- for (var i = 0; i this.length; i++) {
- if (this[i] == val) {
- return i;
- }
- }
- return -1;
- };
- Array.prototype.removevalue = function (val) {
- var index = this.indexOf(val);
- if (index > -1) {
- this.splice(index, 1);
- }
- };
-
-
- /*
- * 方法:Array.remove(dx)
- * 功能:根据元素位置值删除数组元素.
- * 参数:元素值
- * 返回:在原数组上修改数组
- * 作者:pxp
- */
- Array.prototype.remove = function (dx) {
- if (isNaN(dx) || dx > this.length) {
- return false;
- }
- for (var i = 0, n = 0; i this.length; i++) {
- if (this[i] != this[dx]) {
- this[n++] = this[i];
- }
- }
- this.length -= 1;
- };
js 删除,搜素材,soscw.com
js 删除
标签:style class c ext color a
原文地址:http://www.cnblogs.com/ZH1132672711/p/3737012.html
文章来自:
搜素材网的
编程语言模块,转载请注明文章出处。
文章标题:
js 删除
文章链接:http://soscw.com/essay/31052.html
评论