jquery 获取单选框的值(这个已经知道了),以及选中的当前行的其他字段的值
table如下<tr><td><inputtype='radio'value='0'id='radio'></td><td>11</td><td>22</td><td>3...
table 如下
<tr>
<td><input type='radio' value='0' id='radio' ></td>
<td>11</td>
<td>22</td>
<td>33</td>
<tr>
怎么获取选中的当前行的其他字段的值?
为什么我用$(this).parent().next().next().text(); 取不出来值呢?
3.如果我要提取第二个td里的值的话怎么取呢? 展开
<tr>
<td><input type='radio' value='0' id='radio' ></td>
<td>11</td>
<td>22</td>
<td>33</td>
<tr>
怎么获取选中的当前行的其他字段的值?
为什么我用$(this).parent().next().next().text(); 取不出来值呢?
3.如果我要提取第二个td里的值的话怎么取呢? 展开
2014-03-31
展开全部
$(this).parents("tr").each(function () {
alert($(this).text());
} );this表示是radio这个哦
alert($(sender).parent().next().text());
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
使用 html() 取值
像下面这样
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<title>无标题文档</title>
</head>
<body>
<table width="100%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td><input type='radio' value='0' id='radio' onclick="Check(this);"></td>
<td>11</td>
<td>22</td>
<td>33</td>
<tr>
</table>
<script type="text/javascript">
function Check(obj){
alert($(obj).parent().next().next().html());
//也可以
//alert($("td").eq(2).html());
}
</script>
</body>
</html>
像下面这样
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<title>无标题文档</title>
</head>
<body>
<table width="100%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td><input type='radio' value='0' id='radio' onclick="Check(this);"></td>
<td>11</td>
<td>22</td>
<td>33</td>
<tr>
</table>
<script type="text/javascript">
function Check(obj){
alert($(obj).parent().next().next().html());
//也可以
//alert($("td").eq(2).html());
}
</script>
</body>
</html>
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
$(this).parent().next().text();//this指的是input
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询