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); }...