Info/ETC...

JavaScript ULR 가져오기

게으른거북 2024. 1. 5. 12:16
728x90
// "https://lazeturtle.tistory.com/43?category=12345"
window.location.href

// "https:"
window.location.protocol

// "lazeturtle.tistory.com"
window.location.host

// "lazeturtle.tistory.com"
window.location.hostname

// ""
window.location.port

// "/43"
window.location.pathname

// "?category=12345"
window.location.search
728x90