只有當用戶訪問的上一頁在某個域上時,我纔想執行一個函數。這怎麼可以使用JavaScript(或jQuery或其他)來完成?Javascript:if(previous page == certainurl){function}
1
A
回答
2
如何參考document.referrer
?
1
您可以使用document.referrer
。但是,不要指望它總是正確的,因爲一些代理(例如,不提供它)。不過,它可能會給你一些好點子。
1
您可以使用javascript的referrer
對象來查看用戶來自哪裏。
if (document.referrer && document.referrer.indexOf("http://" + somehost) > 0){
// do something
}
請注意,因爲這不太可靠。你應該使用某種持久數據來知道用戶做了什麼。
相關問題
- 1. php fields should not display going to previous page
- 2. from page * .aspx.cs call javascript function
- 3. Jquery Next Previous Pager
- 4. Javascript:if/for循環發出
- 5. 「function loadData(page){}」中的「page」是什麼意思在我的jQuery Ajax中?
- 6. jQuery Slideshow Next/Previous
- 7. backstretch next&previous buttons
- 8. Canvas Loads Previous Image
- 9. 的javascript:if語句比較不工作
- 10. .htaccess RewriteRule domain.com/page/page to domain.com?p = page/page
- 11. jQuery .next()和.previous()
- 12. Next和Previous鍵Jquery
- 13. jquery set previous div class
- 14. '__asm __(「。previous」);''意思?
- 15. ECSlidingViewController previous topviewcontroller
- 16. SQL Next/previous Assoc
- 17. JavaScript:if var?其中var是沒有BOOL
- 18. (function(){})();和(function(){}());?
- 19. tableview text over previous text
- 20. Android close previous活動
- 21. Next/Previous Record(Database Android)
- 22. git aws.push to previous environment
- 23. primefaces growl redisplays previous message
- 24. Fullpage.js:Next和Previous按鈕
- 25. Android MediaController Next Previous Buttons
- 26. CSS Underlay a previous div
- 27. Emacs ispell goto previous word?
- 28. RETURN PREVIOUS CONTROLLER UIbutton action
- 29. Bootstrap 4 NavTabs Next/Previous not working
- 30. Page Header and Bottom Page alignment
可能重複的[你如何得到以前的網址在Javascript?](http://stackoverflow.com/questions/3528324/how-do-you-get-the-previous-url-in-javascript) –