Home > Article > Web Front-end > How to dynamically create links in javascript_javascript skills
The example in this article describes the method of dynamically creating links in javascript. Share it with everyone for your reference. The specific analysis is as follows:
Example of dynamically creating links:
<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>
I hope this article will be helpful to everyone’s JavaScript programming design.