摘要: 下面提一下jQuery的each方法的几种常用的用法 复制代码 代码如下: var arr = [ "one", "two", "three", "four"]; $.each(arr, function(){ alert(this); }); 上面这个each输出的结果分别为:one,two,th 阅读全文
posted @ 2016-02-26 16:27 CQ_LQJ 阅读(432) 评论(0) 推荐(0) 编辑