gpt4 book ai didi

Jquery td 单击

转载 作者:行者123 更新时间:2023-12-01 07:02:44 25 4
gpt4 key购买 nike

我目前使用 jquery 将所有 td 链接到编辑链接,但我希望能够仅以编辑类为目标 td,并且我需要该链接来查找具有 edit-action 类的 a 标签。

任何帮助都会很棒!

当前代码:

$("tr.edit").click(function(){
if(!clicking)
{
clicking = true;
$('a.edit-action', this).click();
clicking = false;
}
});



<table align="center" width="100%" id="Table" >
<tr>
<th width="20%">col 1</th>
<th width="20%">col 1</th>
<th width="25%">col 1</th>
<th width="25%">col 1</th>
<th width="10%">col 1</th>
</tr>
<tr class="edit">
<td width="20%" class="edit">name</td>
<td width="20%" class="edit">type</td>
<td width="25%">other 1</td>
<td width="25%">other 2</td>
<td width="10%" class="action"><a href="#" class="dialog edit-action">Edit</a><br>Another delete link here</td>

</tr>
</table>

最佳答案

使用 .live,比拥有数百个单独的点击事件更好。

另请注意,您无法模拟用户单击 anchor 来打开新页面,但它将在 anchor 上运行任何脚本单击处理程序。

$("td.edit").live('click', function(){
$(this).parent().find('a.edit-action').bla
});

关于Jquery td 单击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1337123/

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