$.ajax({

cache:true,

type:"post",

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

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

async:false,

success:function(data) {

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

    }

});