gpt4 book ai didi

javascript - 是否可以将类添加到伪元素?

转载 作者:技术小花猫 更新时间:2023-10-29 11:47:01 27 4
gpt4 key购买 nike

我猜不是,因为这行不通:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" >
$("p:after").addClass("allgone");
</script>
<style type="text/css">
p:after {
content: "daniel";
}
.allgone{
display: none;
}
</style>
<title></title>
</head>
<body>
<p></p>
</body>
</html>

JSFIDDLE

最佳答案

不,但是您可以将类添加到 p 元素,并为其创建替代样式。

p:after {
content: "daniel";
}
p.allgone:after {
display: none;
}

$('p').addClass('allgone');

http://jsfiddle.net/xGUaY/

关于javascript - 是否可以将类添加到伪元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9202528/

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