gpt4 book ai didi

javascript - 使用jquery从表中单击复选框获取html值

转载 作者:行者123 更新时间:2023-11-28 16:27:25 25 4
gpt4 key购买 nike

从数据库获取数据后,我在页面加载时创建一个如下所示的动态表

<table border="1" id="tableView">
<thead>
<th></th><th>ID</th><th>Name</th><th>Description</th><th>Active</th><th>Release Date</th>
</thead>

<tbody>
<%
for(int i=0;i<result.size();i++)
{
%><tr><td><input class="tablechkbox" type="checkbox"/></td><%
String[] row=pi.getResults(result,i,params);
for(int j=0;j<row.length;j++)
{
%><td class="viewa"><%out.print(row[j]);%></td><%
}
%></tr><%
} %>
</tbody>
</table>

这就是我正在执行的获取 ID 列的操作。请帮我获取任何特定列

$('#tableView tbody tr').live('click', function (event) {
if ($('input.tablechkbox', this).is(':checked'))
{
alert(this.innerHTMl());
/*$('.viewa', this).each(function() {
alert(this.innerHTMl());
});*/
}
});

下面是我的jsp页面截图

enter image description here

最佳答案

alert($(this).find("td:eq(1)").html());应该可以工作

关于javascript - 使用jquery从表中单击复选框获取html值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7515074/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com