当我按下后退按钮时,我正在获取缓存网站,但仅限于Chrome。当我尝试使用firefox时,一切都很好。 我试过javascript:
INIT:
window.onpopstate = handlePopstate;
功能:
var handlePopstate = function(e) {
if(e.state) {
targets.$container.replaceWith(e.state.response);
}
};