萬盛學電腦網

 萬盛學電腦網 >> 腳本專題 >> javascript >> javascript動態創建鏈接的方法

javascript動態創建鏈接的方法

   本文實例講述了javascript動態創建鏈接的方法。分享給大家供大家參考。具體分析如下:

  動態創建鏈接示例:

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>動態添加鏈接</title> <script type="text/javascript"> function AppendLink() { var div = document.getElementById("divMain"); var linkTmp = document.createElement("a"); linkTmp.href = "http://www.baidu.com"; linkTmp.innerText = "百度"; //鏈接要使用innertText,不能使用value div.appendChild(linkTmp); } </script> </head> <body> <div id="divMain"></div> <input type="button" value="添加鏈接" onclick="AppendLink()" /> </body> </html>

  希望本文所述對大家的javascript程序設計有所幫助。

copyright © 萬盛學電腦網 all rights reserved