4种挂隐藏链接的代码
<div style="display:none;">
<a href=http://hi.baidu.com/q369568652
target="_blank">小武</a></div>
javascript:
<script language="javascript" type="text/javascript">
document.write("<div style='display:none;'>");
</script><div>
<a href=http://hi.baidu.com/q369568652>小武</a>
<script language=”javascript” type=”text/javascript”>
document.write(”</div>”);
</script>
html:
<marquee height=1 width=5 SCROLLAMOUNT=3000 SCROLLDELAY=20000>
<a href=http://hi.baidu.com/q369568652>小武</a>
</MARQUEE>
css1:
<div style="position: absolute; top: -999px;left: -999px;">
<a href=http://hi.baidu.com/q369568652>小武</a>
</div>
css2:
<div style="position:absolute;left:expression(1-900)
;top:expression(3-999);">
<a href=http://hi.baidu.com/q369568652>小武</a>
</div>
代码为小金整理,很实用,