ajax juery debug

前端之家收集整理的这篇文章主要介绍了ajax juery debug前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
$.ajax({  
   type: "POST",url: "post.PHP",data: dataString,success: function(data) {
       console.log('OK: ' + data);
   },error: function(jqXHR,textStatus,errorThrown) {
       console.log('Error: ' + errorThrown + ' ' + textStatus + ' ' + jqXHR);
   }
 });
借助于 console.log()函数 原文链接:https://www.f2er.com/ajax/166046.html

猜你在找的Ajax相关文章