URL이 http://test.com:8088/test.php?num=1 일 경우 window.location.hostname; // => test.com window.location.href; // => http://test.com:8088/test.php window.location.host; // => test.com:8088 window.location.port; // => 8088 window.location.pathname; // => test.php window.location.search; // => ?
num=1 window.location.protocol; // => http:...
URL 정보가져오기에 대한 요약내용입니다.
자세한 내용은 아래에 원문링크를 확인해주시기 바랍니다.