ajax异步提交表单

来源:互联网 发布:建模师的职业寿命 知乎 编辑:程序博客网 时间:2024/05/17 01:34
ajax异步提交表单var options = {           target:        '#output1',   // 返回结果存放处         success:       showResponse  // 提交成功处理:function         // other available options:           //url:       url         // 如果定义了会覆盖原有action       /pe:      type        // 'get' or 'post,会覆盖原有定义的       //dataType:  null        // 'xml', 'script', or 'json' (返回数据类型)           //clearForm: true        // 成功提交后清除所有表单字段值       //resetForm: true        // 成功提交后重置所有字段       // iframe : true          // 以iframe方式提交       // beforeSerialize         // 序列化之前:function       // beforeSubmit                 // 提交之前:function       // error               // 错误处理:function         // $.ajax options can be used here too, for example:           //timeout:   3000       }; $("#form").ajaxForm(options).ajaxSubmit();jquery 1.10以后操作checkbox不能再使用attr,需要使用prop可能无效:$("").attr("checked", true);值加上了但未选中需要使用prop


0 0
原创粉丝点击