0
任何人都可以看到爲什麼我的重定向不工作?我已經通過論壇,我看不出我做錯了什麼。請注意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>
它的工作... – ocanal
這不適用於我的Firefox和Chrome。按鈕消失,但沒有實際發生。 – user3224987