我使用window.location.href
將用戶重定向到某個頁面,如果符合條件。我已將window.location.href
僅放入if
塊中,而沒有else
塊。當我執行我的代碼時,儘管重定向有效,但緊接在if
塊之後的代碼也會執行。一旦將頁面的代碼重定向到其他頁面,不應該執行頁面的代碼嗎?重定向使用:window.location.href
-3
A
回答
0
如果window.location.href之後的(如果條件)有效,它將被執行,因爲window.location.href需要一些時間來重定向到另一個頁面。
0
使用abort
在if
語句後停止腳本。
像這樣:
if(condition) {
window.location.href = 'somewhere.com';
abort; // it will stop the code below the if statement, IF the condition is true.
}
..
some other code
..
0
寫的exit();在window.location.href ='abc.com'之後;這將會在window.location.href不會執行後重定向頁面和代碼。
相關問題
- 1. window.location.href不重定向
- 2. window.location.href - 幫助重定向
- 3. Javascript window.location.href重定向不起作用
- 4. ngClick與window.location.href土地重定向兩次
- 5. Window.location.href丟失後默認ngRoute重定向
- 6. 重定向一個網站到本地文件夾使用window.location.href()不工作
- 7. 400使用window.location.href
- 8. 使用window.location.href
- 9. JavaScript的條件URL追加或重定向基於window.location.href
- 10. 這2個window.location.href重定向有什麼區別? (Chrome)
- 11. 使用Mocha,Karma測試window.location.href中的window.location.href
- 12. window.location.href +定時器
- 13. 使用「303參見」重定向的URL使用UrlRewriteFilter重定向
- 14. 301重定向使用htaccess
- 15. 使用Aurelia重定向類
- 16. 301使用htaccess重定向
- 17. 使用JavaScript重定向
- 18. 重定向使用VM
- 19. htaccess使用Wordpress重定向
- 20. 重定向/使用ROR
- 21. 重定向URL使用?
- 22. Angular2使用JavaScript重定向?
- 23. 重定向使用在.htaccess
- 24. 重定向使用htaccess
- 25. 使用htaccess重定向URL
- 26. 使用mod_rewrite重定向?
- 27. 重定向使用JavaScript
- 28. 使用「.htaccess」重定向URL
- 29. 使用htaccess重定向
- 30. 使用本地重定向
請張貼您的代碼。 – Shawn