如何解决Ajax请求结果的缓存问题说明

2024-12-29 08:31:53
推荐回答(1个)
回答1:

jquery中ajax的缓存问题需要增加参数cache: $.ajax({ type: "GET", cache: true, url: 'aa.php', dataType: "html", cache: true, success: function (res) { $('.page-loading').remove(); $('.page-content .page-content-body').html(res); }...