function test(){
$.ajaxSetup({
async : false
});
$.post(url,{},function(){});
}
jquery 的ajax请求设置成同步
最新推荐文章于 2024-05-21 10:41:09 发布
function test(){
$.ajaxSetup({
async : false
});
$.post(url,{},function(){});
}