본문 바로가기
웹디자인 (HTML,JS)

createElement, appendChild, removeChild 를 이용한 엘리먼트 추가/삭제

by 날으는물고기 2008. 12. 16.

createElement, appendChild, removeChild 를 이용한 엘리먼트 추가/삭제

<script type="text/javascript">
function add()
{
   var oText = document.createElement("input");
   oText.setAttribute("type", "text");
   oText.setAttribute("id", "txt");
   document.myform.appendChild(oText);
}
function del()
{
   var oText = document.getElementById("txt");
   oText.parentNode.removeChild(oText);
}
</script>

728x90

댓글