gpt4 book ai didi

javascript - 使用 Jquery 的 id 的父级

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

<div class="cdlButton" style="width:40px; float: left;">  // want this div element
<div style="">
<a id="changestatus" class="" onclick="changeWorkflowStatus()" href="#">
<img id="" width="32px" height="32px" title="disable" alt="disable" src="images/disable.png">
</a>
</div>
</div>

我想要 div 在 jquery 的帮助下现在我正在这样做

 $("#changestatus ").parent().parent().addClass('disablecdlButton');

有没有其他方法获取顶部div元素

最佳答案

$('#changestatus').closest('div.cdlButton').addClass('disablecdlButton');

For each element in the set, get the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree.

Official Document

关于javascript - 使用 Jquery 的 id 的父级,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18459918/

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