我有以下 SASS 代码
a.unfavorite{
width: 20px;
background-position: -71px -28px;
text-decoration: none !important;
&:before {
content: "un-favorite";
background: #000;
color: #fff;
}
}
在 JQuery 中,我希望能够访问:before
元素以便对其进行修改。
我尝试做这样的事情,$('.unfavorite:before')
但没有产生任何结果。我做错了吗?