私の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>
訪問していなくても、すべてのリンクが赤くなります。これの何が問題になっていますか。