0

我曾尝试使用 CSS:visited属性获取访问过的链接,但它不起作用。

是否有任何方法或解决方法可以使用 JavaScript、jQuery 或任何其他技术获取访问过的链接?

4

3 回答 3

0

您可以使用 创建自己的链接历史记录localStorage,并存储点击了哪些链接,以及点击了多少次链接。

Stack Snippet 中的这段代码在下面可能不起作用,但您可以将代码粘贴到您的文件或 JSFiddle 中,它会正常工作。链接历史将保存在 中localStorage,每次单击锚点时,其相应的计数都会增加。

$('a').on("click",function(){
var anchorhistory=localStorage.getItem($(this).attr("id"));
if(anchorhistory){
anchorhistory=parseInt(anchorhistory)+1;
localStorage.setItem($(this).attr("id"), anchorhistory);
alert($(this).attr("id")+" is clicked "+anchorhistory+" Times");
}
else{
anchorhistory=1;
localStorage.setItem($(this).attr("id"), anchorhistory);
alert($(this).attr("id")+" is clicked "+anchorhistory+" Times");

}
})
ul a{
  cursor:pointer;
  color:blue;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<ul>
<li><a id='anchor1'>anchor1</a></li>
<li><a id='anchor2'>anchor2</a></li>
<li><a id='anchor3'>anchor3</a></li>
<li><a id='anchor4'>anchor4</a></li>
</ul>

于 2017-03-13T16:22:11.517 回答
0

正如@Nevershowmyface 所提到的,您可以访问最后访问的页面。

这里有两个例子,一个使用 CSS一个使用 jQuery

于 2016-02-16T05:45:07.953 回答
0

enter code herejavascript 不支持它,因为我还尝试找到方法来收集 a:visited links 数据以隐藏访问过的节点。

一些参考:Privacy and the :visited selector - CSS | MDN

如果你只关心样式,你应该可以通过 CSS 来实现它,但是通过屏幕上显示的内容应该是观察它被访问的唯一方法。

我在 Greasemonkey 的用户脚本中这样做,让那些没有:已访问样式的网站显示那些已经访问过的链接。

// ==UserScript==
// @description    ADD a:visited for CSS
// @include        *annalscts.com*
// @include        *thejns.org*
// @include        *turkishneurosurgery.org.tr*
// @include        *nature.com*
// @include        *academic.oup.com*
// @include        *sagepub.com*
// @grant          GM_addStyle
// ==/UserScript==
GM_addStyle('a:visited {color:#EE5665 !important}');

为了将数据收集到本地,我使用 Greasemonkey API

GM_setValue 
GM_getValue

我刚刚在 Youtube 上观看了 API 教程并尝试写入用户脚本

Greasemonkey API:值只是在 Youtube 上搜索这个标题。

书面教程: http: //nulleffort.com/greasemonkey-api-values/

Greasemonkey 文档:https ://wiki.greasespot.net/Greasemonkey_Manual:API

我的用户脚本的某些部分

//Firstly, var the ordinary variable preVisitedLinks and assigning to memory variable visitedLinks (At first the value should be undefined)
var preVisitedLinks = GM_getValue("visitedLinks");
unsafeWindow.aclick = function(tlink){
    window.open(tlink, '_blank', 'toolbar=yes,scrollbars=yes,resizable=yes,top=10,left=10,width=10,height=10'); // click a button added and get the link visited in my script 
    //If the ordinary variable preVisitedLinks is undefined (First time running the script)
    if(preVisitedLinks.includes('undefined')){
        GM_setValue('preVisitedLinks', '|' + tlink.replace('http://paper.pubmed.cn/',''));
    }
    //If the ordinary variable preVisitedLinks is not undefined, continue to add each new string collect
    else{
        GM_setValue('preVisitedLinks', preVisitedLinks + '|' + tlink.replace('http://paper.pubmed.cn/',''));
    }
    //The ordinary variable preVisitedLinks assigning to memory variable visitedLinks value. The magic is the variable name the same.
    preVisitedLinks = GM_getValue("preVisitedLinks");
    if(preVisitedLinks.length > 27500){
        preVisitedLinks = preVisitedLinks.substr(preVisitedLinks.length - 27500);
    }
    //The memory variable visitedLinks value assigning to the ordinary variable preVisitedLinks value
    GM_setValue('visitedLinks',preVisitedLinks);
    console.info(preVisitedLinks);
};

在某些地方我使用字符串来检测访问的链接代码

if(preVisitedLinks.includes(trs[i].querySelectorAll('li')[0].querySelector('a').href.replace('http://xxx.xxxx.com/',''))){
        trs[i].remove();
    }
于 2017-03-13T15:55:02.893 回答