gpt4 book ai didi

jquery - jQuery 是否可以与 :before and :after selectors? 一起使用

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

例如,我有这样的行:

$('div#about_title:after').remove();

它似乎不起作用,我该怎么做?

最佳答案

:before:after 创建的伪元素在技术上并不存在于 DOM 上,因此它们不能由 javascript(以及 jQuery)操作。

您可以编辑 CSS 来删除它们:

<div class="afterStuff"></div>

div.afterStuff:after {
content: "hi";
}

$('.afterStuff').removeClass('afterStuff');

我建议添加/删除类,而不是直接修改内联样式。

http://jsfiddle.net/UUPks/

关于jquery - jQuery 是否可以与 :before and :after selectors? 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17723397/

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