$('form#myForm').submit();
<form name="searchform" id="searchform" method="post">
<input type="hidden" name="gbn" id="gbn" value=""/>
</form>
<script type="text/javascript">
function go_search(){
$("#searchform").attr("action","/main/search").submit();
}
</script>
해당 form 에 action url을 선언 후 .submit() 를 실행하면,
위 소스에서처럼 main/search 라는 컨트롤러를 찾아서 검색을 실행하게 연동할 수 있습니다.
url은 언제든 원하는대로 변경해서 호출하면 form을 넘겨서 처리할 수 있습니다!
'JavaScript > jQuery' 카테고리의 다른 글
jQuery - 기초 (0) | 2022.11.03 |
---|---|
jQuery - .attr() 함수 (0) | 2022.09.04 |
jQuery - 함수 (0) | 2022.09.04 |
jQuery - radio, checkBox (0) | 2022.09.04 |
jQuery - .click() 선택한 요소를 클릭했을 때 특정 작업을 하는 메서드 (0) | 2022.09.04 |