我有以下代码,但是当我从页面重定向提交时。我希望能够使用jquery / ajax向其发布内容,以便提交时页面不会刷新。有人可以给我看一个jsfiddle演示吗?
<form id="widget_contact" action="http://www.mysaintssearch.com/?cmd=sb-gimme&from=?cmd=home" method="post"> <input type="text" name="pcode" id="fc_name" /> <input type="hidden" name="hdnCmd" value="sb-gimme" /> <input name="send_button" id="fc_submit" class="btn_b" type="submit" value="Gimme" /> </form>
看一下jQuery post():
post()
$.ajax({ type: 'POST', url: url, data: data, success: success, dataType: dataType });