php 점프 전에 URL을 얻는 방법: 1. QUESTRING 매개변수를 사용하여 URL을 얻는 JAVASCRIPT 클라이언트 방법 2. 일반 분석 방법, 전체 URL을 문자열로 설정하거나 가져오는 코드는 [alert(window.location. href) ].
php 메소드를 사용하여 점프하기 전에 URL을 가져옵니다.
1: ASP의 request.querystring, PHP의 $_GET
1과 동일한 QUESTRING 매개변수가 있는 URL에 대한 JAVASCRIPT 클라이언트 솔루션을 가져옵니다.
<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>
<Script language="javascript"> var Request = new Object(); Request = GetRequest(); var 参数1,参数2,参数3,参数N; 参数1 = Request[''参数1'']; 参数2 = Request[''参数2'']; 参数3 = Request[''参数3'']; 参数N = Request[''参数N'']; </Script>
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);
alert(window.location.href);
alert(window.location.port);
alert(window.location.protocol);
alert(window.location.hash);
alert(window.location.host);
alert(window.location.search);
관련 학습 권장 사항:php 프로그래밍(동영상)
위 내용은 PHP로 점프하기 전에 URL을 얻는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!