码迷,mamicode.com
首页 > Web开发 > 详细

js 删除

时间:2014-05-24 00:22:05      阅读:308      评论:0      收藏:0      [点我收藏+]

标签:style   class   c   ext   color   a   

  1. /* 
  2.  *  方法:Array.remove(dx) 
  3.  *  功能:根据元素值删除数组元素. 
  4.  *  参数:元素值 
  5.  *  返回:在原数组上修改数组 
  6.  *  作者:pxp 
  7.  */  
  8. Array.prototype.indexOf = function (val) {  
  9.     for (var i = 0; i < this.length; i++) {  
  10.         if (this[i] == val) {  
  11.             return i;  
  12.         }  
  13.     }  
  14.     return -1;  
  15. };  
  16. Array.prototype.removevalue = function (val) {  
  17.     var index = this.indexOf(val);  
  18.     if (index > -1) {  
  19.         this.splice(index, 1);  
  20.     }  
  21. };  
  22.   
  23.   
  24. /* 
  25.  *  方法:Array.remove(dx) 
  26.  *  功能:根据元素位置值删除数组元素. 
  27.  *  参数:元素值 
  28.  *  返回:在原数组上修改数组 
  29.  *  作者:pxp 
  30.  */  
  31. Array.prototype.remove = function (dx) {  
  32.     if (isNaN(dx) || dx > this.length) {  
  33.         return false;  
  34.     }  
  35.     for (var i = 0, n = 0; i < this.length; i++) {  
  36.         if (this[i] != this[dx]) {  
  37.             this[n++] = this[i];  
  38.         }  
  39.     }  
  40.     this.length -= 1;  
  41. };  

js 删除,布布扣,bubuko.com

js 删除

标签:style   class   c   ext   color   a   

原文地址:http://www.cnblogs.com/ZH1132672711/p/3737012.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!