gpt4 book ai didi

javascript - 使用 window.location.replace 重定向页面 ("xx");基于一个条件

转载 作者:行者123 更新时间:2023-12-02 19:43:59 25 4
gpt4 key购买 nike

我正在尝试根据条件重定向网站;如果时间<12则重定向到xxx.com,否则重定向到yyy.com,即合并这两段代码:

var hour = new Date().getHours();
var greeting;
if (hour < 12) {
greeting = "Good day";
} else {
greeting = "Good evening";
}
document.getElementById("demo").innerHTML = greeting;
<!DOCTYPE html>
<html>
<body>
<p id="demo"></p>
</body>
</html>

window.location.replace("http://xx.com");

我刚刚开始学习 js,所以非常感谢您的帮助。

最佳答案

这个怎么样:

<!DOCTYPE html>
<html>
<body>

<p id="demo"></p>

<script>
window.onload = function() {
var hour = new Date().getHours();
if (hour < 12) {
window.location.replace("http://xxx.example.com");
} else {
window.location.replace("http://yyy.example.com");
}
}
</script>

</body>
</html>

关于javascript - 使用 window.location.replace 重定向页面 ("xx");基于一个条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59647408/

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