JQ:
$("tr")each(function(i,e){
if($("td input:checkbox",$(e))prop("checked")){
consolelog($("td:eq(1)",$(e))text());
}
});
跟随鼠标移动
<script type="text/javascript" src="inc/jqueryv13js"></script>
我链接了自己的jQuery文件,你换成自己的就可以用了:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 10 Transitional//EN" "http://wwww3org/TR/xhtml1/DTD/xhtml1-transitionaldtd">
<html xmlns="http://wwww3org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
<!--
#apDiv1 {
position:absolute;
background-color:#FF0;
left:159px;
top:100px;
width:100px;
height:100px;
z-index:99;
display:none;
text-align:center;
}
-->
</style>
<script type="text/javascript" src="inc/jqueryv13js"></script>
<script type="text/javascript">
$(function(){
$("td")mouseover(function(){
$("#apDiv1")show()html($(this)html());
})
$("td")mousemove(function(event){
var x= eventpageX + 10 + "px";
var y= eventpageY + 10 + "px";
$("#apDiv1")css({"left":x,"top":y});
})
$("td")mouseout(function(){ $("#apDiv1")hide(); })
})
</script>
</head>
<body>
<div id="apDiv1">aaa</div>
<div>
<table width="200" border="1" id="table1">
<tr>
<td>1-1</td>
<td>1-2</td>
<td>1-3</td>
</tr>
<tr>
<td>2-1</td>
<td>2-2</td>
<td>2-3</td>
</tr>
<tr>
<td>3-1</td>
<td>3-2</td>
<td>3-3</td>
</tr>
</table>
</div>
</body>
</html>
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="keywords" content="小白编辑部 and LittleWhite">
<title>小白编辑部 and LittleWhite</title>
<style type="text/css">
table {
margin: auto;
width: 300px;
border-collapse: collapse;
border: 1px solid black;
}
td {
border: 1px solid black;
text-align: center;
font: 20px/15 Consolas, 微软雅黑;
}
</style>
<script type="text/javascript">
onload = function ()
{
var first = documentgetElementById('first');
var result = firsttBodies[0]rows[1]cells[0]children[0];
var x = resulttBodies[0]rows[0]cells[0]firstChildnodeValue;
consolelog(x);
}
</script>
</head>
<body>
<table id="first">
<tr><td>22</td></tr>
<tr>
<td><table>
<tr>
<td>dd</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
用table的属性获取吧
var _tab = documentgetElementById('tb'); // 获取table对象
var _row = _tabrows; //获取table的行
var _cell = _row[1]cells; //获取第二行的列
alert(_cell[2]innerHTML); //获取第三列的值
你可以使用 JavaScript 中自带的 rowIndex 和 cellIndex 来获取行和列的键值 (从0开始)
点击 checkbox,获取 parentNode (也就是 td),tdcellIndex 就是所在列的键值
点击 checkbox,获取 parentNodeparentNode (也就是 tr),trrowIndex 就是所在行的键值
<script type="text/javascript">
// 点击
documentonclick = function(e) {
// 兼容 event 和 target
e = e || windowevent;
var target = etarget || esrcElement;
// 确认是 checkbox
if(targettagNametoLowerCase() === "input"
&& targettype === "checkbox") {
// 获取行列键值
var row_num = targetparentNodeparentNoderowIndex;
var col_num = targetparentNodecellIndex;
// 输出
alert(row_num + " " + col_num);
}
};
</script>
因为键值是从 0 开始,一般需要 +1 才是行列数,但因为你表单中第一行个第一列都是文字,所以不需要 +1 正好输出需要的数字,例如点击周四 + 6,会输出 4 6
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)