gpt4 book ai didi

javascript - 不同日期重定向到不同页面

转载 作者:行者123 更新时间:2023-11-28 10:56:24 24 4
gpt4 key购买 nike

我需要在不同日期将用户重定向到不同页面。我想使用 jquery/javascript 构建它,并且需要与 IE7 及以上版本兼容。这是我到目前为止所拥有的

首先,问题是window.location.href 在 IE7 和 IE8 中似乎失败

其次,这似乎无法正常工作。有人可以为我提供一个解决方案以及一些示例吗...

 <script src="http://88ab3e84099be7e78755-9809173ac7d72ed2228bcf805441be5c.r76.cf2.rackcdn.com/32919/js/jquery-1.10.2.min.js"></script>

<script>var a = new Date("01 23, 2013 19:30:00");
var b = new Date("01 30, 2014 19:29:59");

var c = new Date("01 30, 2014 19:30:00");
var d = new Date("02 06, 2014 19:29:59");

var e = new Date("02 06, 2014 19:30:00");
var f = new Date("02 13, 2014 19:29:59");

var g = new Date("02 13, 2014 19:30:00");
var h = new Date("02 20, 2014 19:29:59");

var i = new Date("02 20, 2014 19:30:00");
var j = new Date("02 27, 2014 19:29:59");

var k = new Date("02 27, 2014 19:30:00");
var l = new Date("03 06, 2014 19:29:59");

todayDate = new Date();

if (todayDate >= a && todayDate < b) {
discovery_refresh = window.setTimeout(function () {
window.location.replace = "http://www.google.com";
}, 0);
}
if (todayDate >= c && todayDate < d) {
discovery_refresh = window.setTimeout(function () {
window.location.replace = "http://www.yahoo.com";
}, 0);
}
if (todayDate >= e && todayDate < f) {
discovery_refresh = window.setTimeout(function () {
window.location.href = "http://www.smh.com.au";
}, 0);
}
if (todayDate >= g && todayDate < h) {
discovery_refresh = window.setTimeout(function () {
window.location.replace = "http://www.gmail.com";
}, 0);
}
if (todayDate >= i && todayDate < j) {
discovery_refresh = window.setTimeout(function () {
window.location.replace= "http://www.bbc.com";
}, 0);
}
if (todayDate >= k && todayDate < l) {
discovery_refresh = window.setTimeout(function () {
window.location.href = "http://www.news.com.au";
}, 0);
}</script>

I am still here

最佳答案

您的日期语法错误 - 将其更改为类似的内容new Date(年、月、日、小时、分钟、秒、毫秒) 就可以了。

来源:w3schools on Date Object

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

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