Thursday, July 15, 2021

ajax

 $.ajax({

url : ".php file path.php",

method : "POST",

data : JSON.stringify(param),

success : function(res){

res = JSON.parse(res);

if(res.result == 200)

{

//

}

}

}).fail(function(){

//

});

No comments:

Post a Comment

Kirtishil Patil