存档

文章标签 ‘黒链’

黒链的5种写法

2009年8月6日 SunnyV 没有评论

黒链(隐藏链接)的写法有如下几种,他推荐第二种

  1. div:
  2. <div style="display:none;">
  3. <a href=http://www.123.com/
  4. target="_blank">123</a></div>
  5.  
  6. javascript:
  7. <script language="javascript" type="text/javascript">
  8. document.write("<div style='display:none;'>");
  9. </div></script><div>
  10. <a href=http://www.123.com/>123
  11. <script language=”javascript” type=”text/javascript”>
  12. document.write(”</script></div>”);
  13.  
  14.  
  15. html:
  16. <marquee height=1 width=5 SCROLLAMOUNT=3000 SCROLLDELAY=20000>
  17. <a href=http://www.123.com/>123
  18. </marquee>
  19.  
  20. css1:
  21. <div style="position: absolute; top: -999px;left: -999px;">
  22. <a href=http://www.123.com/>123
  23. </div>
  24.  
  25. css2:
  26. <div style="position:absolute;left:expression(1-900);top:expression(3-999);">
  27. <a href=http://www.123.com/>123
  28.  
  29. </div>
分类: SEM案例 标签: ,