随机链接

  1. <html>
  2. <body>
  3.  
  4. <script type="text/javascript">
  5. var r=Math.random()
  6. if (r>0.5)
  7. {
  8. document.write("<a href='http://www.jishuchi.com'>学习 Web 开发!</a>")
  9. }
  10. else
  11. {
  12. document.write("<a href='http://www.microsoft.com'>访问微软!</a>")
  13. }
  14. </script>
  15.  
  16. </body>
  17. </html>