jquery如何获取checkbox在table中对应的行数 求代码

 我来答
zhengshao01
2013-05-15 · TA获得超过282个赞
知道答主
回答量:224
采纳率:0%
帮助的人:142万
展开全部
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>获取checkbox在table中对应的行数</title>
<style type="text/css">
*{margin:0;padding:0}
.tables{width:500px;background: #f0f0f0;margin:50px auto;font:12px/21px Arial, Helvetica, sans-serif}
.tables td{border: 2px solid #fff}
</style>
</head>
<body>
<table class="tables">
<caption>获取checkbox在table中对应的行数</caption>
<tr>
<td><input type="checkbox" class="chk" /> </td>
</tr>
<tr>
<td><input type="checkbox" class="chk" /> </td>
</tr>
<tr>
<td><input type="checkbox" class="chk" /> </td>
</tr>
<tr>
<td><input type="checkbox" class="chk" /> </td>
</tr>
<tr>
<td><input type="checkbox" class="chk" /> </td>
</tr>
</table>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript">
var total_tr=$(".tables").find("tr"); //获得table中tr 的总行数
$(".tables").click(function(event){
event = window.event || event;
var target = event.target || event.srcElement;
if(target.type == "checkbox" && target.checked == true){
var this_tr=$(target).parent().parent();//获得当前点击的checkbox 所在tr
var index=total_tr.index(this_tr); //获取该tr在整个table中 位置
alert('此checkbox在table 中对应的行数是:'+index+' (这只是索引值)');
}
});
</script>
</body>
</html>
更多追问追答
追问
如何点击按钮后得到所有被选中的行数呢
追答
一样的嘛.....
探索者西瓜
2013-05-15 · TA获得超过174个赞
知道小有建树答主
回答量:211
采纳率:0%
帮助的人:173万
展开全部
你好, 你要得到行数和列数也不难,我简单的写了下
html代码:
<table border="1" width="160px">
<tr>
<td>时间段</td>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr value="row1" class="rowvalue">
<td>星期一</td>
<td><input type="checkbox" class="option"></td>
<td><input type="checkbox" class="option"></td>
<td><input type="checkbox" class="option"></td>
<td><input type="checkbox" class="option"></td>
</tr>
<tr value="row2" class="rowvalue">
<td>星期二</td>
<td><input type="checkbox" class="option"></td>
<td><input type="checkbox" class="option"></td>
<td><input type="checkbox" class="option"></td>
<td><input type="checkbox" class="option"></td>
</tr>
<tr value="row3" class="rowvalue">
<td>星期三</td>
<td><input type="checkbox" class="option"></td>
<td><input type="checkbox" class="option"></td>
<td><input type="checkbox" class="option"></td>
<td><input type="checkbox" class="option"></td>
</tr>
</table>
js代码:
$(function(){

$(".option").click(function(){
var arr = [];
$(".option").each(function(colindex){
if($(this).is(":checked"))
{
if(colindex % 4 == 3)
{
arr.push(Math.floor(colindex/4) + 1);
arr.push(4);
}else{
arr.push(Math.floor(colindex/4) + 1);
arr.push((colindex+1) % 4);
}
alert(arr);
return false;
}
})
})

})
已经测试过了,希望你可以看下这个思路,望对你有所帮助吧.
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
以温柔待之
推荐于2016-06-09 · TA获得超过502个赞
知道小有建树答主
回答量:362
采纳率:60%
帮助的人:161万
展开全部
  1. 获取table下所有tr     var trs = $("#tableID tr")

  2. 获取table下的所有tr    

    1. 循环所有tr 获取tr下所有的td   看看你的checkbox在第几列  比如在第一列:

    1. for(int i ,i<trs.length,i++){
    2. $(trs).find(td).eq(0)
    3. }
    4. 我不知道你说的行数是什么意思  但是这个可以获取所有的checkbox
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式