本文實例講述了JavaScript獲得目前網頁來源頁面(即上一頁)的方法。分享給大家供大家參考。具體如下:
下面的JS程式碼透過document.referrer取得來源頁面位址
<!DOCTYPE html> <html> <body> The referrer of this document is: <script> document.write(document.referrer); </script> </body> </html>
希望本文所述對大家的javascript程式設計有所幫助。