参考:http://www.cnblogs.com/hyywaq/p/5919384.html
1、引用jQuery.js和jquery.form.js
jquery.form.js:http://malsup.github.io/jquery.form.js
2、html
<form id="form1" runat="server" class="layui-form" action="[接口连接]" target="rfFrame" method="post"> <button id="submit" type="submit">保存</button> </form> <iframe id="rfFrame" name="rfFrame" src="about:blank" style="display:none;"></iframe>
3、js
$("#submit").click(function () { var options = { url: ‘[接口连接]‘, //同action type: ‘post‘, dataType: ‘json‘,//预计返回json数据 beforeSend: function (xhr) {//请求之前 }, success: function (d) { debugger }, complete: function (xhr) {//请求完成 }, error: function (xhr, status, msg) { } }; $("#form1").ajaxSubmit(options); });
时间: 2024-10-21 15:51:17