ajax实现form表单的局部刷新

前端之家收集整理的这篇文章主要介绍了ajax实现form表单的局部刷新前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

$.ajax({

cache:true,

type:"post",

url:"${ctx}/process/calculateBottleType",

data:$("#formId").serialize(),//提交的表单id

async:false,

success:function(data) {

$("#formId").parent().html(data); //刷新的表单数据

}

});

原文链接:https://www.f2er.com/ajax/163593.html

猜你在找的Ajax相关文章