标签:length last log 方法 span array style 改变 div
1.去掉数组最后一个元素
Array.prototype.noLast = function(){ var len=this.length; this.splice(len-1,1)//改变了原数组 return this }
自己写的js方法
原文地址:http://www.cnblogs.com/rage-the-dream/p/6538672.html