如何使用jQuery 操作CSS伪元素::before 和::after?


使用hover()函数操作CSS伪元素。您可以尝试运行以下代码来学习如何操作CSS伪元素−

示例

在线演示

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $('span').hover(function(){
    $(this).addClass('change').attr('data-content','bar');
});
});
</script>
<style>
span.change:after {
    content: attr(data-content) ' This is demo text.';
}
</style>
</head>
<body>
<p>Place cursor below...</p>
<span>foo</span>

</body>
</html>

更新于: 15-6-2020

3K+ 浏览次数

开启您的职业生涯

完成本课程获得认证

开始
广告