この記事の例では、JavaScript でリンクを動的に作成する方法について説明します。皆さんの参考に共有してください。具体的な分析は次のとおりです。
リンクを動的に作成する例:
<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 プログラミング設計に役立つことを願っています。