jquery 15天 03 隐藏真实的链接
隐藏真实的链接 基于jquery 其实js 就可以实现 貌似
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>15天jquery-03</title><script type="text/javascript" src="jquery-1.4.js" ></script><script type="text/javascript">//修改真实的链接为 隐藏的链接//比如 修改 www.baidu.com 为 www.google.com $(document).ready(function(){$("a.testlink").mouseover(function(){window.status=this.title;return true;}).mouseout(function(){window.status='done';return true;})});</script></head><body><a href="www.baidu.com" title="www.google.com">这是一个测试的链接</a><br/><a href="www.baidu.com" title="www.google.com">这是一个测试的链接</a><br/><a href="www.baidu.com" title="www.google.com">这是一个测试的链接</a><br/><a href="www.baidu.com" title="www.google.com">这是一个测试的链接</a><br/><a href="www.baidu.com" title="www.google.com">这是一个测试的链接</a><br/></body></html>