如何检查链接是否已被访问?
我正在为自己编写一个用户脚本,我有一个永久链接列表,我想隐藏我已经访问过的链接。我想我可以使用 jquery 并检查链接是否已被访问(默认颜色=紫色),如果是则隐藏该元素。
但是...我不知道如何实际检查这一点。 .attr('style');
只能获取 border: none
而 .css() 无效。
我如何检查链接是否已被点击? 我正在用 Greasemonkey 在 Firefox 4.0.1 上进行测试,但我将在 chrome 上使用它。
I am writing a userscript for myself and i have a list of permalinks and i'd like to hide the ones i already visited. I was thinking i can use jquery and check if the link has been visited (default color=purple) and if so hide the element.
However... i cant figure out how to actually check this. .attr('style');
only gets me border: none
while .css() is invalid.
How might i check if the link has been clicked on?
I am testing on firefox 4.0.1 with greasemonkey but i'll be using it on chrome.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
颜色检查应该不再起作用了。由于此安全缺陷已修复。
The color checking shouldn't work anymore. Since this security flaw is fixed.
a:visited 是您正在寻找的选择器。这将返回文档中所有访问过的链接。
a:visited is the selector you are looking for. This will return all visited links in the document.
注入 a:visited { display: none; 会更容易吗? } 规则?
你的 Greasemonkey 脚本中是这样的:
Would it be easier to inject a
a:visited { display: none; }
rule?Something like this in your Greasemonkey script: