이 기사의 예에서는 자바스크립트에서 링크를 동적으로 생성하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 분석은 다음과 같습니다.
동적으로 링크를 생성하는 예:
<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 프로그래밍 설계에 도움이 되기를 바랍니다.