jquery表格行进行编辑 如何获取当前的行数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery表格行进行编辑 如何获取当前的行数据相关的知识,希望对你有一定的参考价值。
jquery代码$(".myclass").each(function()
$("#sub",this).click(function()
// alert(1)
alert($(this).parents("tr").html());
);
);
);
表格html代码
<table border="1">
<tr class="myclass">
<th>Month</th>
<th>Savings</th>
<th><input id="sub" type="submit" ></input></th>
</tr>
<tr class="myclass">
<td>January</td>
<td>$100</td>
<th><input id="sub" type="submit" ></input></th>
</tr>
</table>
通过$(this)获取所点击的按钮,
$(this).parents(“tr”)获取按钮所在行,
$(this).parents(“tr”).find(“.”).text()获取按钮所在行class为的元素的值。 参考技术A a,权限可以设置
b、基本上不行,excel是文件级的共享,不是sheet级共享
以上是关于jquery表格行进行编辑 如何获取当前的行数据的主要内容,如果未能解决你的问题,请参考以下文章
请教jquery 对表格的行操作的。对页面表格进行上下移动位置,删除记录的操作。 谢谢。如下补充