jQuery 遍历 - map() 方法

来源:http://itssh.cn/post/931.html

定义和用法
map() 把每个元素通过函数传递到当前匹配集合中,生成包含返回值的新的 jQuery 对象。
语法
.map(callback(index,domElement))
详细说明
由于返回值是 jQuery 封装的数组,使用 get() 来处理返回的对象以得到基础的数组

案例:





jquery map




    
    
  • 列表1
  • 列表2
  • 列表3
  • 列表4
  • 列表5

效果:


Paste_Image.png

来源:http://itssh.cn/post/931.html

你可能感兴趣的:(jQuery 遍历 - map() 方法)