$.ajax({
cache: true,
type: "POST",
url: "/postcomment",
data: $('#pinglunform').serialize(),// 你的formid
async: false,
error: function (request) {
alert("Connection error");
},
success: function (data) {
$("#commonLayout_appcreshi").parent().html(data);
}
});
相关文章
- 04-19jquery动态创建form表单并提交
- 04-19form表单ajax带file提交出现Processing of multipart/form-data request failed. Unexpected EOF read on the sock
- 04-19通过form表单提交数据和ajax提交数据
- 04-19原生Ajax手动提交form表,将input标签的name:value值转换为字符串
- 04-19form表单里submit的提交,如何不让其阻止ajax的调用
- 04-19Form表单使用、ajax解决表单提交后页面跳转数据丢失的问题
- 04-19导出excel用ajax不行,提交form表单可以
- 04-19通过ajax提交form表单
- 04-19苹果 ios 微信浏览器界面 ajax 提交带 file 的 form 总是走error方法
- 04-19Ajax替代Form表单提交 重定向方法