gpt4 book ai didi

javascript - Jquery数据属性改变并影响CSS

转载 作者:行者123 更新时间:2023-12-02 22:00:03 27 4
gpt4 key购买 nike

我在 css 中使用了数据属性,但是当我通过 jquery 更改它时,它不会在 dom 的屏幕上发生变化。

$('#new-1').data('count', 5);
.fa-stack[data-count]:after {
position: absolute;
right: -20%;
top: -20%;
content: attr(data-count);
font-size: 90%;
padding: .4em;
border-radius: 999px;
line-height: .75em;
color: white;
background: rgba(255, 0, 0, 1);
text-align: center;
min-width: 1.5em;
font-weight: bold;
}
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<span id="new-1" class="fa-stack fa has-badge" data-count="0">
<i class="fa fa-user-circle fa-stack-1x"></i>
</span>

最佳答案

$('#new-1').attr('data-count', 5);

关于javascript - Jquery数据属性改变并影响CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59905056/

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