最近在项目上发现如果一个页面有ifame,动态改变iframe的src,浏览器历史里就会记下这个新src,后退按钮就会生效,如果不想让浏览器这样的话可以用以下的办法:
var oDocument = iframe.contentWindow.document;
oDocument.open("text/html", "replace");
oDocument.write(responseText);
oDocument.close();
最近在项目上发现如果一个页面有ifame,动态改变iframe的src,浏览器历史里就会记下这个新src,后退按钮就会生效,如果不想让浏览器这样的话可以用以下的办法:
var oDocument = iframe.contentWindow.document;
oDocument.open("text/html", "replace");
oDocument.write(responseText);
oDocument.close();