안녕하세요, 오늘은 JQUERY에서 전체 INPUT BOX를 초기화하는 방법에 대해서 알아보도록 하겠습니다.
$('#form-name')[0].reset();
<form id="frm-reset">
<div><input type="text" value="input box1"></div>
<div><input type="text" value="input box2"></div>
<div><input type="text" value="input box3"></div>
<div>
<select id="selectBox1">
<option>select1</option>
<option>select2</option>
<option>select3</option>
</select>
<select id="selectBox2">
<option>select4</option>
<option>select5</option>
<option>select6</option>
</select>
</div>
<div>
라디오1<input type="radio" name="radioBox">
라디오2<input type="radio" name="radioBox">
</div>
</form>
<button id="reset">초기화하기</bitton>
$("#reset").click(function(){
$("#frm-reset")[0].reset();
});
See the Pen Untitled by seo (@seungbly) on CodePen.
<form id="frm-reset">
<div><input type="text" value="input box1"></div>
<div><input type="text" value="input box2"></div>
<div><input type="text" value="input box3"></div>
<div>
<select id="selectBox1">
<option>select1</option>
<option>select2</option>
<option>select3</option>
</select>
<select id="selectBox2">
<option>select4</option>
<option>select5</option>
<option>select6</option>
</select>
</div>
<div>
라디오1<input type="radio" name="radioBox">
라디오2<input type="radio" name="radioBox">
</div>
<div><input type="reset"></div>
</form>
See the Pen Untitled by seo (@seungbly) on CodePen.
<input type="reset">
주의사항으로는 form태그 안에 위치해 있어야 한다.
[JQUERY] inputbox readonly/disabled 처리하는 방법 (0) | 2022.05.20 |
---|---|
[JQUERY] CLASS 변경, 추가(addClass()), 삭제(removeClass()) (0) | 2022.05.17 |
[JQUERY] 항상 최신버전 CDN 불러와서 사용하기 (0) | 2022.05.11 |
[ JQUERY ] 로딩 함수 ready, onload 먼저 수행되는 함수는? (0) | 2022.05.06 |
[JavaScript] window.open 새창으로 열기 사용법 (0) | 2022.05.03 |