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
삶을 깊이 이해하면 할수록 죽음에 대한 슬픔은 그만큼 줄어든다. (톨스토이)