分类分类
更新时间:2026-05-10 23:00:00作者:zhao
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>Js获取 table当前行的值</title>
<script language=javascript>
var selectedTr = null;
function c1(obj) {
obj.style.backgroundColor = 'blue'; //把点到的那一行变希望的颜色;
if (selectedTr != null)
selectedTr.style.removeAttribute("backgroundColor");
if (selectedTr == obj)
selectedTr = null;//加上此句,以控制点击变白,再点击反灰
else
selectedTr = obj;
}
/*得到选中行的第一列的值*/
function check() {
if (selectedTr != null) {
var str = selectedTr.cells[0].childNodes[0].value;
document.getElementById("lab").innerHTML = str;
} else {
alert("请选择一行");
}
}
/*删除选中行*/
function del() {
if (selectedTr != null) {
if (confirm("确定要删除吗?")) {
alert(selectedTr.cells[0].childNodes[0].value);
var tbody = selectedTr.parentNode;
tbody.removeChild(selectedTr);
}
} else {
alert("请选择一行");
}
}
</script>
</head>
<body>
单击选中Tr,高亮显示,再单击取消选选中。
<input type=button value="选中的是哪一行?" onclick="check()">
<input type=button value="删除选中行" onclick="del()">
<input type=button value="增加一行" onclick="add()">
<table width="100%" border="1" cellspacing="0" cellpadding="0" id="tab">
<tr onclick="c1(this);" bgcolor="#cccccc">
<td><input type="text" value="11"></td>
<td><input type="text" value="12"></td>
</tr>
<tr onclick="c1(this);" bgcolor="#e0e0e0">
<td><input type="text" value="21"></td>
<td><input type="text" value="22"></td>
</tr>
<tr onclick="c1(this);" bgcolor="#cccccc">
<td><input type="text" value="31"></td>
<td><input type="text" value="32"></td>
</tr>
<tr onclick="c1(this);" bgcolor="#e0e0e0">
<td><input type="text" value="41"></td>
<td><input type="text" value="42"></td>
</tr>
<tr onclick="c1(this);" bgcolor="#cccccc">
<td><input type="text" value="51"></td>
<td><input type="text" value="52"></td>
</tr>
</table>
<label id="lab"></label>
</body>
</html>
相关
修真情缘角色扮演303.33 MBv1.0.02026-05-10
下载我的小独角兽女孩休闲益智380.89 MBv1.0.232026-05-10
下载超级种田男孩手机版经营养成1.31Gv1.0.92026-05-10
下载不必要的实验冒险游戏64.9 MBv1.1.592026-05-10
下载军师联盟策略游戏163.2 MBv0.0.12026-05-10
下载翻天喜地凑大钱手机版休闲益智138.72 MBv1.0.92026-05-10
下载东离剑游纪手游动作射击1.6Gv1.4.22026-05-10
下载天猫养车商家版App学习办公74.95 MBv0.6.12026-05-10
下载掌上命运方舟App手游辅助137.48 MBv1.9.12026-05-10
下载退役军人服务APP生活服务67.16 MBv1.2.52026-05-10
下载屯漫漫画APP资讯阅读23.06 MBv2.0.32026-05-10
下载蛋仔派对蛋壳App手游辅助185.73 MBv0.0.22026-05-10
下载









