이 글에서는 HTML 페이지 요소를 추가하거나 삭제하는 등 동적으로 변경하는 JavaScript를 주로 소개합니다. 이제 특정 참조 값을 공유합니다. 필요한 친구가 이를 참조할 수 있습니다. 예를 들어, HTML에 요소를 추가하거나 삭제할 수 있습니다. 관심 있는 친구들은 놓치지 마세요. HTML에 요소를 추가하려면 먼저 생성해야 합니다. 태그를 지정하고 해당 콘텐츠를 라벨에 추가한 후 생성된 라벨을 해당 위치에 추가합니다.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>测试文档</title> <script type="text/javascript"> function add(){ var element = document.createElement("p"); var node = document.createTextNode("添加新段落"); element.appendChild(node); x = document.getElementById("demo"); x.appendChild(element); } </script> </head> <body> <p id="demo"> <p>这是第一段</p> </p> <input type="button" value="按钮" onclick="add()" /> </body> </html>
HTML에서 요소 삭제
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>测试文档</title> <script type="text/javascript"> function deleteE(){ var father = document.getElementById("demo"); var child = document.getElementById("p1"); father.removeChild(child); } </script> </head> <body> <p id="demo"> <p id="p1">这是第一段</p> <p id="p2">这是第二段</p> </p> <input type="button" value="删除" onclick="deleteE()" /> </body> </html>
관련 권장 사항:
javascript 를 사용하여 HTML 태그를 동적으로 생성하는 방법의 예 요약
위 내용은 JavaScript는 추가 또는 제거와 같은 HTML 페이지 요소를 동적으로 변경합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!