본문 바로가기
JS

버튼으로 서브밋을 처리하는방법

by brilliant-growth 2023. 7. 10.
	$("input[value='제출하기']").on("click",function(){
            
                document.frm.method="get";
                document.frm.action="approvalFormOk.jsp";
                document.frm.submit();
            })

name이 frm으로 스크립트하고 html이 똑같아야함

<form action="approvalFormOk.jsp" name="frm" method="get">

	<input class="btn btn-primary" type="button" value="제출하기" />

</form>

 

'JS' 카테고리의 다른 글

글쓰기 에디터(썸머노트,ck에디터) 공백제거  (0) 2024.12.16
Summernote 설정  (1) 2024.12.11
css 선택자를 사용하는 방법  (0) 2024.01.02
JSON(JavaScript Object Notation)  (0) 2023.11.13
AJAX(Asynchronous Javascript And XML)  (1) 2023.11.13