function getCWnew(quoteID,pinTaxPrice)
{
jQuery.ajax({
async:false, //表面ajax同步
type: "POST",//post提交
url: "http://"+window.location.host+"/ToursPackages/PayOfJudge.aspx",//调用方法
data: "quoteID="+quoteID+"&pinTaxPrice="+pinTaxPrice,//方法参数
success: function(msg){//返回结果
if(msg=="true")
{
//返回结果处理业务
}
}
}
});
}
ajax同步请求
最新推荐文章于 2025-07-11 17:56:15 发布