我正在使用以下java脚本来禁用我的QUIZ应用程序的浏览器后退按钮。哪个在Chrome中工作正常但在IE中没有。您能否建议对以下代码或代码片段进行更改,以禁用IE 9和Chrome中的浏览器后退按钮。 IE 9不支持推送状态。
<script type = "text/javascript" >
history.pushState(null, null, 'instructions.aspx');
window.addEventListener('popstate', function (event) {
history.pushState(null, null, 'instructions.aspx');
});
</script>
答案 0 :(得分:0)
这将在IE
...
<script type="text/javascript" language="javascript">
function noBack()
{
window.history.forward();
}
</script>
只是googling一点......