HTML URL 주소 구문 분석
JavaScript의 위치 개체를 사용하면 URL에서 프로토콜, 호스트 이름, 포트, 앵커 포인트, 쿼리 매개변수 등과 같은 정보를 얻을 수 있습니다.
예
URL: http://www.akmsg.com/WebDemo/URLParsing.html#top?username=admin&pwd=123456
파싱 결과:
코드
console.log( 'location.hash :' + location.hash + '\r\n' + 'location.host :' + location.host + '\r\n' + 'location.hostname :' + location.hostname + '\r\n' + 'location.href :' + location.href + '\r\n' + 'location.pathname :' + location.pathname + '\r\n' + 'location.port :' + location.port + '\r\n' + 'location.protocol :' + location.protocol + '\r\n' + 'location.hash :' + location.hash + '\r\n' + 'location.search :' + location.search + '\r\n' + 'location.origin :' + location.origin )
온라인 예시
주소: http://www.akmsg.com/WebDemo/URLParsing.html