jQuery官网是这样介绍form.js A simple way to AJAX-ify any form on your page; with file upload and progress support.简单来说就是用ajax提交form表单(含file内容)内容 form.js提供的API方法 API API描述 参数 ajaxForm 增加所有需要的事件监听器,为ajax提交表单做准备.ajaxForm并不能提交表单.在document的ready函数中,使用ajaxForm来为a…
参考网络代码基础上进行修改,调试通过. 在html中插入下面的代码: 函数ajaxSubmit是submit的ajax形式. 注意:这里面使用到了jquery库 //<!--将form中的值转换为键值对.--> function getFormJson(frm) { var o = {}; var a = $(frm).serializeArray(); $.each(a, function () { if (o[this.name] !== undefined) { if (!o[this.…