본문 바로가기
prcExp

[2022.07.22] How to get page path using JavaScript?

by injekim97 2022. 7. 22.
반응형

[2022.07.22] How to get page path using JavaScript?

 

 

localhost에서 개발을 하면서 해당 사이트의 path를 알아내는 방법에 대해 알아보도록 하자.

localhost > F12 > console에 아래의 키워드 중 window.location.pathname 를 사용하면 된다.

 

window.location.search
'?ctgId=C10000000158&ctgId2=C10000000163&ctgId3=C10000000299&prdId=1000007880&brand=CALLAWAY&rentalMonth='



window.location.search;
'?ctgId=C10000000158&ctgId2=C10000000163&ctgId3=C10000000299&prdId=1000007880&brand=CALLAWAY&rentalMonth='


window.location.href
'http://localhost/product/view?ctgId=C10000000158&ctgId2=C10000000163&ctgId3=C10000000299&prdId=1000007880&brand=CALLAWAY&rentalMonth='



window.location.pathname
'/product/view'

해당 path를 얻었으면 인텔리제이에서 찾는 방법

- shift + shift  > product/view

    * 위에선 /product -> product로 검색해야 나온다  

반응형

댓글