禁用浏览器缓存Ajax请求

$.ajax({
    url: 'url.php',
    cache: false,
    success: function(data){
       //.....
    }
});
仅Get有缓存, Post不会缓存
原文地址:https://www.cnblogs.com/krisy/p/3687567.html