gpt4 book ai didi

javascript - 页面重定向不起作用

转载 作者:行者123 更新时间:2023-12-02 17:41:37 26 4
gpt4 key购买 nike

谁能明白为什么我的重定向不起作用?我浏览过论坛,但看不出我做错了什么。请注意 if 语句的条件为 false。重定向应该发生...为什么不呢?

<!DOCTYPE html>
<html>
<body>
<p>Click the button to get a time-based greeting.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>

<script>
function myFunction() {
var x="";
if (new Date("2014-03-04 21:00:00") < new Date()) {
x="GOOD";
} else {
window.location = "http://www.google.com";
}
document.getElementById("demo").innerHTML=x;
}
</script>
</body>
</html>

最佳答案

应该是:

    window.location.href = "http://www.google.com";

关于javascript - 页面重定向不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22157067/

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