我希望当用户单击具有href #test
的链接时,具有href #test
的标签链接具有特殊的CSS样式
答案 0 :(得分:1)
根据您的初始描述,一种实现方法是将CSS用于“访问过的”链接,然后将其与属性选择器组合在一起:
a[href="#test"]:visited {
color: pink;
}
否则在jQuery中:
jQuery("a[href='#test']").on("click", function(event){
// Do changes to your styles here, you could use jQuery(this) to target it
});