Button 클릭시 자동으로 서브밋 현상이 일어나는 경우 해결방법(Can I make a <button> not submit a form?)
<form>
<button class="btn bg-color-teal txt-color-white">버튼1</button>
</form>
위와같은 코딩의 경우 100% 버튼 클릭시 서브밋 현상이 발생하게 되어있다.
해결방법은 type 속성을 추가해준다.
<form>
<button type="button" class="btn bg-color-teal txt-color-white">버튼1</button>
</form>
'Web > JQuery' 카테고리의 다른 글
jQuery replaceAll() 함수 만들기 (0) | 2020.03.13 |
---|---|
jQuery UI dialog와 Bootbox(bootstrap) 기능을 사용할때 오류 (0) | 2017.08.04 |
[jqGrid] 그리드의 해더와 내용이 밀리는 현상 (0) | 2017.02.13 |
[JavaScript] 데이터 타입 - 수 (Numbers) (0) | 2016.10.14 |
[JavaScript] 개요 (0) | 2016.10.14 |