在我的 asp.net 网站中,我想禁用一个内容页面的后退按钮。所以,我在内容页面中使用了下面的 java 脚本代码
function changeHashOnLoad() {
window.location.href += "#";
setTimeout("changeHashAgain()", "50");
}
function changeHashAgain() {
window.location.href += "1";
}
var storedHash = window.location.hash;
window.setInterval(function () {
if (window.location.hash != storedHash) {
window.location.hash = storedHash;
}
}, 50);
changeHashOnLoad();
上面的代码在 chrome 和 mozilla firefox 中正常工作,但在 Internet Explorer 中页面不能正常滚动。任何人请给出解决方案。
谢谢你。