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
우리는 유리할 때는 형제가 되고, 불리할 때는 남이 되며, 이로울 때는 친구가 되고, 해로울 때는 원수가 되는 그러한 인간관계를 증오한다. (북녘 하늘의 명언)