日期:2014-05-16 浏览次数:20380 次
window.onload=function(){
var a = document.getElementsByTagName("a");
for(var i=0;i<a.length;i++) a[i].href = a[i].href.indexOf("baidu.com")!=-1?"http://127.0.0.1/go.php?url=" + a[i].href:a[i].href;
}
window.onload=function(){
var a = document.getElementsByTagName("a");
for(var i=0;i<a.length;i++) a[i].onclick = function(){
if(this.href.indexOf("baidu.com")!=-1)this.href="http://127.0.0.1/go.php?url=" + this.href;}
}