gpt4 book ai didi

javascript - jquery 选择器从表中访问 anchor

转载 作者:太空宇宙 更新时间:2023-11-03 20:18:07 25 4
gpt4 key购买 nike

我想在我的 jquery 中访问 anchor 标签,嵌套如下。我想选择每个 anchor 并在 jquery 中向其添加点击事件。

<table id="table1">
<tr>
<th>Tags</th>
<th>ID</th>
<th>Batch ID</th>
<th>Source</th>
<th>Date</th>
<th>Details
<div id="detailsdiv">
<a href="#" id="default">Default</a>&nbsp;|&nbsp;
<a href="#" id="wrap">Wrap</a>
</div>
</th>
<th>Account Name</th>
<th>Col15</th>
<th>Col16</th>
<th>Col17</th>
<th>Col18</th>
</tr>

最佳答案

使用以下方法选择 anchor 标签:

$("table #detailsdiv a")

并使用 .on() 应用点击功能方法:

$("table #detailsdiv a").on("click", function() {
//use this to select the element that has been clicked
$(this);

//Do click functionality here
});

或者,您也可以使用 .click()直接使用 jQuery 方法:

 $("table #detailsdiv a").click(function() {
//use this to select the element that has been clicked
$(this);

//Do click functionality here
});

关于javascript - jquery 选择器从表中访问 anchor ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16668894/

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