我的css文件有这个
a:visited
{
color:red;
}
我的html页面有这个
<body>
<a href="http://www.w3schools.com">W3Sschools</a>
<div></div>
<a href="http://www.google.com">Google</a>
<div></div>
<a href="http://www.wikipedia.org">Wikipedia</a>
<div></div>
<script>
if($("a:visited").length){
$("a").next().html("this link is visited");
}
</script>
</body>
但它不起作用..所以我在脚本区域尝试了另一种选择
<script>
if($("a").css("color","red")){
$("a").next().html("this link is visited");
}
</script>
即使没有访问它们,它也会将我的所有链接都变成红色,这有什么问题!