반응형
[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로 검색해야 나온다
반응형
'prcExp' 카테고리의 다른 글
[2022.07.25] 프로젝트 협업할 때 주의사항 (0) | 2022.07.25 |
---|---|
[2022.07.25] 개발 page에서 Controller & view(jsp) 위치 확인 방법 (0) | 2022.07.25 |
[2022.07.21] Ajax Response example code (0) | 2022.07.21 |
[2022.07.21] How to solve git push error:failed to push some refs to on Sourcetree? (0) | 2022.07.21 |
[2022.07.18] How to create partition on windows? (0) | 2022.07.18 |
댓글