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
시간은 우리각자가 가진 고유의 재산이요. 유일한 재산이다. 그것을 어떻게 사용할 것인지 결정할 수 있는 것은 오로지 우리 자신뿐이다. 결코 그 재산을 남이 우리 대신 사용하지 않도록 조심해야 한다.