以下は私のコードです..IEとFirefoxでは正常に動作します..つまり、10秒後にwww.google.comにリダイレクトされます..しかし、同じコードはChromeでは機能しません
<html>
<head>
<title>App- Log In</title>
<meta http-equiv="refresh" content="10; url=http://www.google.com">
<script language="JavaScript">
function noBack(){window.history.forward()}
noBack();
window.onload=noBack;
window.onpageshow=function(evt){if(evt.persisted)noBack()}
window.onunload=function(){void(0)}
</script>
</head>
<body>
Testing
</body>
</html>