gpt4 book ai didi

JavaScript 不能在 IE 上运行,但在所有其他浏览器上都可以

转载 作者:行者123 更新时间:2023-11-30 07:01:30 24 4
gpt4 key购买 nike

该代码用于在网页上添加密码,适用于所有其他浏览器,但不适用于 IE。

<HEAD>
<SCRIPT language="JavaScript">
<!--hide

var password;

var pass1="cool";

password=prompt('Please enter your password to view this page!',' ');

if (password==pass1)
alert('Password Correct! Click OK to enter!');
else
{
window.location="http://www.pageresource.com/jscript/jpass.htm";
}

//-->
</SCRIPT>
</HEAD>

最佳答案

window.location 在 IE6 中不工作。您可能需要document.location

if ("cool" == prompt('Please enter your password to view this page!', '')) {
alert('Password Correct! Click OK to enter!');
} else {
document.location = "http://www.pageresource.com/jscript/jpass.htm";
}

关于JavaScript 不能在 IE 上运行,但在所有其他浏览器上都可以,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1910887/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com