php如何取得跳轉前的url

coldplay.xixi
發布: 2023-03-04 09:38:01
原創
3896 人瀏覽過

php取得跳轉前的url方法:1、取得URL帶QUESTRING參數的JAVASCRIPT客戶端方法;2、正規分析法,設定或取得整個URL為字串,程式碼為【alert(window. location.href)】。

php如何取得跳轉前的url

php取得跳轉前的url方法:

一:取得URL帶QUESTRING參數的JAVASCRIPT客戶端解決方案,相當於asp的request.querystring,PHP的$_GET

#1.函數:

<Script language="javascript">
function GetRequest() {
var url = location.search; //获取duurl中"?"符后的字串
var theRequest = new Object();
if (url.indexOf("?") !zhi= -1) {
var str = url.substr(1);
strs = str.split("&");
for(var i = 0; i < strs.length; i ++) {
theRequest[strs[i].split("=")[0]]=(strs[i].split("=")[1]);
}
}
return theRequest;
}
</Script>
登入後複製

2.然後透過呼叫此函數取得對應參數值:

<Script language="javascript">
var Request = new Object();
Request = GetRequest();
var 参数1,参数2,参数3,参数N;
参数1 = Request[&#39;&#39;参数1&#39;&#39;];
参数2 = Request[&#39;&#39;参数2&#39;&#39;];
参数3 = Request[&#39;&#39;参数3&#39;&#39;];
参数N = Request[&#39;&#39;参数N&#39;&#39;];
</Script>
登入後複製

以此取得url字串中所帶的同名參數

二、正規分析法。

function GetQueryString(name) {
var reg = new
RegExp("(^|&)" + name +
"=([^&]*)(&|$)","i");
var r =
window.location.search.substr(1).match(reg);
if (r!=null) return
(r[2]); return null;
}
alert(GetQueryString("参数名1"));
alert(GetQueryString("参数名2"));
alert(GetQueryString("参数名3"));
登入後複製

其他參數取得介紹:

//設定或取得物件指定的檔案名稱或路徑。

alert(window.location.pathname);
登入後複製

//設定或取得整個 URL為字串。

alert(window.location.href);
登入後複製

//設定或取得與 URL關聯的連接埠號碼。

alert(window.location.port);
登入後複製

//設定或取得 URL的協定部分。

alert(window.location.protocol);
登入後複製

//設定或取得 href屬性在井號「#」後面的分段。

alert(window.location.hash);
登入後複製

//設定或取得 location 或 URL 的hostname 和 port 號碼。

alert(window.location.host);
登入後複製

//設定或取得 href屬性中跟在問號後面的部分。

alert(window.location.search);
登入後複製

相關學習推薦:php程式設計(影片)

以上是php如何取得跳轉前的url的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
php
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板