gpt4 book ai didi

jquery - 元素出现在 DOM 中后运行函数

转载 作者:行者123 更新时间:2023-12-03 09:16:49 25 4
gpt4 key购买 nike

在 DOM 中加载元素后,如何从元素中删除类?

以下情况:

如果类名 selected 的元素出现在 DOM 中,我喜欢从中删除类 highlight

示例:

<div class="selected highlight">
<div class="group">Material</div>
<div class="option">350g Chromo-Sulfatkarton matt</div>
</div>

最佳答案

取决于您是否随页面加载元素,在这种情况下您将监听 DOM ready event或其他一些事件,当适当的事件发生时,应触发以下代码:

$('.selected.highlight').removeClass('highlight');

如果监听 DOM 就绪事件,代码将为:

$(function() {
$('.selected.highlight').removeClass('highlight');
});

关于jquery - 元素出现在 DOM 中后运行函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36573464/

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