使用jQuery更改CSS类内容

时间:2017-06-04 23:17:03

标签: jquery html css

我有链接,在悬停时,会显示" bar"后。

.link
{
   color:aqua;
   text-decoration: none;
   background-color: none;
}

.link:hover span {display:none;}
.link:hover::after {content: attr(data-content) 'bar';}

enter image description here

我的目标是,在文档加载时,附加" foo"在" bar"前面在内容中。我已经提到这个previous question寻求帮助,但似乎无法找到解决方案。这不起作用:

$(document).ready(function($){
     $('.link').attr('data-content','foo');
 });

对于出现问题的任何建议都将受到高度赞赏。如何在文档加载时更改.link的内容?

0 个答案:

没有答案