>  기사  >  웹 프론트엔드  >  JS_javascript 기술을 사용하여 여러 URL 주소를 얻는 방법 요약

JS_javascript 기술을 사용하여 여러 URL 주소를 얻는 방법 요약

WBOY
WBOY원래의
2016-05-16 16:58:131002검색

여러 개의 URL 주소를 얻는 JS 메소드는 다음과 같습니다

코드 복사 코드는 다음과 같습니다

thisURL = document.URL;
thisHREF = document.location.href;
thisSLoc = self.location.href;
thisDLoc = document.location;

thisTLoc = top.location.href;
thisPLoc = parent.document.location;
thisTHost = top.location.hostname;
thisHost = location.hostname;

tmpHPage = thisHREF.split( "/" );
thisHPage = tmpHPage[ tmpHPage.length-1 ];
tmpUPage = thisURL.split( "/" );
thisUPage = tmpUPage[ tmpUPage .length-1 ];


다음은 JS를 사용하여 MAC 주소, IP 주소 및 호스트 이름을 얻는 방법입니다.
복사 코드 코드는 다음과 같습니다.





<본문>