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

项目总结 js

时间:2017-12-12 21:38:45      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:nbsp   多选   span   +=   attr   ids   this   多选框   his   

1. 多选框遍历

  $("tr").each(function(i){
    ....

    i 为遍历的每一个元素
  });

2. 遍历选中的多选框

$("input[name=‘id‘]:checked").each(function(i){
console.log("$(this).checked == true: "+$(this).checked == true);
console.log("i: "+i);
ids += $(this).attr("id") + ",";
})


 

项目总结 js

标签:nbsp   多选   span   +=   attr   ids   this   多选框   his   

原文地址:http://www.cnblogs.com/wangzhaoshuang/p/8028602.html

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