1

如何使用单个 onmousedown 事件重写所有外部链接?

有点像 facebooks 用它的链接垫片做的事情

请查看有关链接垫片的原始 Facebook 文章:http : //on.fb.me/zYAq0N

要求:

  • 应该适用于 mainsite.com 上的所有子域。

  • 应该将 example.com 重定向到 mainsite.com/link.cgi?u=http://example.com

  • 只应重定向不属于 mainsite.com 的链接。

用途:

这是为了保护私有网络应用程序的用户的安全,并保护推荐人。

正如 FB 文章中所指出的,最好在运行中进行以获得良好的 UI。

因此,当用户将鼠标悬停在某个链接上时,它会显示正确的链接,但是当他单击它时,js 会将其重定向到 my.site.com/link.cgi=http://link.com

提前致谢

已解决:https : //gist.github.com/2342509

4

2 回答 2

5

对于单个链接:

function $(id){ return document.getElementById(id); }
$(link).onclick = function(){ this.href = "http://otherlink.com"; }

<a href="http://example.com" id="link">My Sheisty Link</a>

因此,要获取所有外部链接:

window.onload = function(){
var links = document.getElementsByTagName("a");
for(a in links){
  var thisLink = links[a].href.split("/")[2];
  if(thisLink !=== window.location.hostname){
    links[a].href = "http://mainsite.com/link.cgi?u=" + links[a]; }
  // Or you could set onclick like the example above
  // May need to accommodate "www"
}}

编辑:
找到了这个答案并有了更好的主意。

document.onclick = function (e) {
 e = e ||  window.event;
 var element = e.target || e.srcElement;

if (element.tagName == 'A') {
 var link = element.href.split("/")[2];
  if(link !=== window.location.hostname){
    links[a].href = "http://mainsite.com/link.cgi?u=" + links[a]; }
    return false; // prevent default action and stop event propagation
  }else{ return true; }
}};
于 2012-04-08T14:31:48.200 回答
1

如果您使用 jQuery,那么以下将起作用

$('a:link').mousedown(function() { 
  this.href = 'http://my.site.com/link.cgi=' + this.href; 
});

否则

var anchors = document.getElementsByTagName('a');
for(var i = 0; i < anchors.length; i++) {
  var a = anchors[i];
  if(a.href) {
    a.addEventListener('mousedown', function(e) {
      this.href = 'http://my.site.com/link.cgi=' + this.href;
    }, false);
  }
}
于 2012-04-08T14:40:30.247 回答