获取table当前点击的行数
Posted 张文琪2022
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取table当前点击的行数相关的知识,希望对你有一定的参考价值。
<html>
<head>
<script src="jquery-1.11.2.min.js"></script>
<script>
function clearLine(element)
$(element).parent().parent().remove();//使用jQuery方法
</script>
</head>
<body>
<table>
<tr>
<td><button onclick="clearLine(this)">点我,我就带着一行都没了</button></td>
<td>呵,我不信</td>
</tr>
<tr>
<td><button onclick="clearLine(this)">有本事再点我</button></td>
<td>哇,没法玩了</td>
</tr>
</table>
</body>
</html>
以上是关于获取table当前点击的行数的主要内容,如果未能解决你的问题,请参考以下文章