gpt4 book ai didi

javascript - 以编程方式创建按钮并附加 div 元素

转载 作者:行者123 更新时间:2023-12-02 17:29:36 24 4
gpt4 key购买 nike

所以我有以下 html

<tr class="forum forum_268">
<td class="icon">
<a href="forumdisplay.php?forumid=268"><img src="http://fi.somethingawful.com/forumicons/byob.gif" title="118527 replies in 4674 threads" alt=""></a>
</td>
<td class="title">
<a class="forum" href="forumdisplay.php?forumid=268" title="Want to have a good time with friends online? Step in and have a chat. Chill out and enjoy yourselves online.">BYOB 8.2</a>
<div class="subforums"><b>SUBFORUMS:</b> (None)<input style="float:right;" type="button" class="sb" value="Add">Test</div>
</td>
<td class="moderators"><a href="member.php?action=getinfo&amp;userid=85738">Jett</a>, <a href="member.php?action=getinfo&amp;userid=173896">Arnold of Soissons</a></td>
</tr>

正如你所见,我这里有一个按钮。假设此类代码在一个页面上重复 15 次左右。当有人单击按钮时,我需要获取与他们单击的位置相对应的代码。

有没有一种好的方法可以将整个元素(class =“forum_268”)的数据绑定(bind)到按钮,以便在单击它时我可以访问它?

我确信我可以用隐藏输入做一些事情,但这真的很困惑

最佳答案

此获取元素 tr class="forum forum_268"

  $('.sb').click(function(event) {
var a = $(this).parents('.forum');
});

关于javascript - 以编程方式创建按钮并附加 div 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23176954/

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