javascript獲取當前url
在WEB開發中,許多開發者都比較喜歡使用javascript來獲取當前url網址,本文就此為大家總結一下比較常用獲取URL的javascript實現程式碼,以下示例是前面為相應實現方法,後面是獲取URL的效果,下面以例子講解:
輸入的網址是(沒有框架):http://localhost:81/Test/1.htm?Did=123
<br>以下為輸出:
<br>
<SCRIPT>
//獲取Url傳過來的值
function Request(name)
{
new RegExp(“(^|&)”+name+”=([^&]*)”).exec(window.location.search.substr(1));
return RegExp.$2
}
注意:RegExp 是javascript中的一個內建物件。為正規表示式。
RegExp.$1是RegExp的一個屬性,指的是與正規表示式匹配的第一個 子匹配(以括號為標誌)字串,以此類推,RegExp.$2,RegExp.$3,..RegExp.$99總共可以有99個匹配
給你看了例子就知道了
var r= /^(d{4})-(d{1,2})-(d{1,2})$/; //正規表示式 匹配出生日期(簡單匹配)
r.exec(`1985-10-15`);
s1=RegExp.$1;
s2=RegExp.$2;
s3=RegExp.$3;
alert(s1+" "+s2+" "+s3)//結果為1985 10 15
thisURL = document.URL; // http://localhost:81/Test/1.htm?Did=123
thisHREF = document.location.href; // http://localhost:81/Test/1.htm?Did=123
thisSLoc = self.location.href; // http://localhost:81/Test/1.htm?Did=123
thisDLoc = document.location; // http://localhost:81/Test/1.htm?Did=123
thisTLoc = top.location.href; // http://localhost:81/Test/1.htm?Did=123
thisPLoc = parent.document.location;// http://localhost:81/Test/1.htm?Did=123
thisTHost = top.location.hostname; // localhost
thisHost = location.hostname; // localhost
thisU1 = window.location.protocol; // http:
thisU2 = window.location.host; // localhost:81
thisU3 = window.location.pathname; // /Test/1.htm
document.writeln( thisURL + “<br />”);
document.writeln( thisHREF + “<br />”);
document.writeln( thisSLoc + “<br />”);
document.writeln( thisDLoc + “<br />”);
document.writeln( thisTLoc + “<br />”);
document.writeln( thisPLoc + “<br />”);
document.writeln( thisTHost + “<br />”);
document.writeln( thisHost + “<br />”);
document.writeln( thisU1 + “<br />”);
document.writeln( thisU2 + “<br />”);
document.writeln( thisU3 + “<br />”);
document.writeln( “Did=”+Request(“Did”) );// Did=123
</SCRIPT>
作者:Tyler Ning
出處:http://www.cnblogs.com/tylerdonet/
本文版權歸作者和部落格園共有,歡迎轉載,但未經作者同意必須保留此段宣告,且在文章頁面明顯位置給出原文連線,如有問題,可以通過以下郵箱地址williamningdong@gmail.com
聯絡我,非常感謝。
相關文章
- javascript如何獲取當前網頁的url地址JavaScript網頁
- JavaScript 獲取當前月份JavaScript
- JavaScript 獲取當前域名JavaScript
- react獲取當前頁面的url引數React
- PHP中獲取當前頁面的完整URLPHP
- PHP獲取當前頁面完整URL地址PHP
- MVC中獲取當前URL、controller、actionMVCController
- asp.net獲取當前頁面的url地址ASP.NET
- javascript獲取當前的時間戳JavaScript時間戳
- PHP中獲取當前頁面的各種URL格式PHP
- javascript如何獲取當前頁面的路徑JavaScript
- JavaScript獲取當前li元素的索引位置JavaScript索引
- Javascript獲取當前時間戳的方法JavaScript時間戳
- javascript獲取當前元素的上一級元素JavaScript
- JavaScript獲取當前li元素是第幾個JavaScript
- php 獲取當前域名和當前協議PHP協議
- javascript獲取當前li元素在集合中的位置JavaScript
- javascript獲取當前頁面的來路頁面地址JavaScript
- mybatis獲取當前時間MyBatis
- Java獲取當前星期幾Java
- JQuery獲取當前元素本身jQuery
- java獲取當前時間Java
- Qt獲取當前時間QT
- js獲取當前時間JS
- Qt 獲取當前時間QT
- JavaScript怎麼獲取當前時間的年月日?JavaScript
- JavaScript獲取當前點選元素的id屬性值JavaScript
- JavaScript中獲取當前專案的絕對路徑JavaScript
- 微信小程式獲取當前位置微信小程式
- Android獲取當前桌面桌布Android
- JavaScript 獲取 url 傳遞引數值JavaScript
- javascript獲取url地址的幾種方式JavaScript
- javascript如何獲取url傳遞的值JavaScript
- 百度地圖JavaScript API獲取使用者當前經緯度並獲取使用者當前詳細地理位置地圖JavaScriptAPI
- javascript獲取當前電腦系統時間程式碼例項JavaScript
- 獲取當前頁面的topViewControllerViewController
- Flutter獲取當前網路型別Flutter型別
- python 如何獲取當前時間Python