Html & Script

입력 필드 추가

컨텐츠 정보

본문

소스

<div id='Div1'>
<button onclick='InsertTBox(Div1);'>추가</button>
<button onclick='DeleteTBox(Div1);'>삭제</button><br>
<input type="text" name="name[]" value='테스트1'></div>

<script>
function InsertTBox(Elem) {
      with(Elem) {
            with(appendChild(document.createElement('input'))) {
                  value = Elem.children[Elem.children.length - 2].value;
                  name = 'name[]';
            }
      }
}
function DeleteTBox(Elem) {
      Elem.removeChild(Elem.children[Elem.children.length - 1]);
}
</script>

관련자료

댓글 0
등록된 댓글이 없습니다.
Today's proverb
희생이란 미(美)라고 하는 글자가 보여주는 그대로 희생양(羊)이 클수록 아름다운 법이다. 곱하기가 쌓아올린 삶의 정상에서의 추락을 막아주는 것은 나누기(÷)의 삶뿐이다. (<들숨날숨 8월호> 김산춘신부님)