어흥
[JavaScript] 현재 URL 정보 불러오기 본문
728x90
반응형
//현재 URL: https://www.w3schools.com/js/tryit.asp?filename=tryjs_loc_href&name=ella
1. window.location.href
-> https://www.w3schools.com/js/tryit.asp?filename=tryjs_loc_href&name=ella
2. window.location.hostname
-> www.w3schools.com
3. window.location.pathname
-> /js/tryit.asp
4. window.location.port
-> https:
5. window.location.assign("https://www.abcd.com")
-> 새로운 Document https://www.abcd.com 로드
6. window.location.search
-> ?filename=tryjs_loc_href&name=ella
7. location.reload()
-> 현재 페이지 리로드(새로고침)
[참고 자료 출처]
728x90
반응형
'Web' 카테고리의 다른 글
[Web] URI v.s URL (0) | 2021.04.09 |
---|---|
[Web - Front end] 수정한 JS, CSS 파일이 적용이 안될 때 (3) | 2021.03.23 |
[Web] 웹 실행순서 (0) | 2021.03.08 |
[Web] Session과 Cookie (0) | 2020.07.02 |
[Web] Servlet 기초 (0) | 2020.07.02 |
Comments