用javascript伪装链接地址状态代码

来源:互联网 发布:淘宝刷好评软件 编辑:程序博客网 时间:2024/05/08 12:17

 <a onMouseOver='window.status="http://www.伪装.com";
return true;' onMouseOut='window.status="Done"; return true;'
href="http://www.baidu.com" target="_blank">Link Text Here</a>

 

//或用jquery写
<p><a href="http://www.affsite.com?id=123"
title="http://www.affsite.com" class="affLink">Super Duper Product</a></p>

$('a.affLink').mouseover(function(){window.status=this.title;return true;})