$.ajax({
cache: true,
type: "POST",
url:'__URL__/add_dynamicfun',
data:$('#form1').serialize(),
async: false,
success: function(res) {
if(res.status == 1){
swal({
title: "",
text: res.info,
type: ""
},function(){
window.location = "__URL__/index";
});
}else{
swal(res.info);
}
}
});
}
原文链接:https://www.f2er.com/ajax/161712.html