2016-12-10 100 views
-1

希望你會做得很好。我試圖重定向到另一個頁面使用JS按鈕,但不知道這段代碼不工作。我需要你的幫助,關於你的幫助將不勝感激。HTML按鈕重定向

感謝

<button id="logoutB" type="button" name="submit" class="btn pull-right btn-info">Log Out</button> 

<script> 
    DOCUMENT.getElementById("logoutB").onclick = function() { 
     location.href = "logout.php"; 
    } 
</script> 

回答

3

document必須小寫:

<script> 
    document.getElementById("logoutB").onclick = function() { 
     location.href = "logout.php"; 
    } 
</script> 
+0

非常感謝您的幫助! 保持祝福:-D –

-1

或者這樣:

<button id="logoutB" type="button" name="submit" class="btn pull-right btn-info">Log Out</button> 

<script> 
document.getElementById("logoutB").onclick = function() { 
    window.location.assign("logout.php"); 
}; 
</script> 
+0

非常感謝您的幫助! 保持祝福:-D –