当前位置: 首页 > 工具软件 > jQuery.form > 使用案例 >

jQuery提交form表单

邵弘伟
2023-12-01
<form id="search_form" name="search_form" method="post"> 
      <input type="text" name="username" /> 
</form>
<script type="text/javascript">
	$(function() {
		$('#btn').bind('click', function() {
			document.search_form.action = 'admin/queryAll.do?pid=' + pid;  //定义 action,并传参 
			$('#search_form').submit();
		});
	})
</script>

作者:itmyhome
 类似资料: