위치 개체는 URL 구문 분석을 위한 다양한 속성과 메서드를 제공합니다. 코드 복사 코드는 다음과 같습니다. title>< ;/title> var uristr = window.location.search.substr(1) <BR>var array = uristr.split(' &&') ; <BR>for (var i = 0; i < array.length; i ) { <BR>var array1 = array[i].split('=') <BR>alert(array1[0 ]) <BR>} <BR>---------------//hash: # 기호 뒤의 내용을 반환합니다 <BR> function showhash() { <BR>alert( window.location.hash) <BR>} <BR>---------//host: 이름 서버의 <BR>function showhost() { <BR>alert(window.location.host) <BR>} <BR>------- ------//href: 현재 로드된 페이지 URL의 전체 페이지 <BR>function showhref() { <BR>alert(window.location.href) <BR>} <BR>---- ---------// 경로명: URL에서 호스트 이름 뒤의 부분 <BR>function showpathname() { <BR>alert(window. location.pathname); <BR>} <BR>------------ ------//protocal: URL에 사용되는 프로토콜 <BR>function showprotacal() { <BR>alert(window.location.protocal); <BR>} <BR>--------- ------------//search: 물음표 뒤의 부분 쿼리 문자열이라고도 하는 가져오기 요청을 실행하는 URL <BR>function showsearch() { <BR>alert(window.location.search) <BR>} <BR> ;/head> 버튼" value="search" onclick="showsearch();" /> 검색 테스트 다른 페이지의 링크를 클릭해야 하는 경우 브라우저 주소 표시줄의 값을 전달하세요. : GO 🎜>