javascript獲取url地址的幾種方式

antzone發表於2017-03-20

動態的獲取url地址在實際應用中比較常見,下面就通過程式碼就分享一下實現此功能的幾種方法。

程式碼如下:

[JavaScript] 純文字檢視 複製程式碼
thisURL = document.URL;
thisHREF = document.location.href;
thisSLoc = self.location.href;
thisDLoc = document.location;
 
thisTLoc = top.location.href;
thisPLoc = parent.document.location;
thisTHost = top.location.hostname;
thisHost = location.hostname;

相關文章