Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
364 views
in Technique[技术] by (71.8m points)

javascript - How to hide visited links after a click to button?

There are a list of links on a page and some of them are already visited by me. I have to make them invisible after any action(checking a checkbox, clicking button, etc).

I tried to use jQuery: $("a:visited").hide(300); but it doesn't seem to work.

UPD: So, the scenario is:

1) the user clicks a button;

2) all the visited links disappear.

jsFiddle example

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can try full CSS method :

a:visited { display: none; }

Or

a:visited { visibility: hidden; }

Or you can use a plugin method : Visited Plugin by Remy Sharp

Usage in jQuery :

$('a').visited().addClass('visited');

With CSS :

.visited { display: none; }

Or

.visited { visibility: hidden; }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...