728x90
반응형
질문 : jQuery로 현재 URL을 얻으시겠습니까?
jQuery를 사용하고 있습니다. 현재 URL의 경로를 가져 와서 변수에 할당하려면 어떻게해야합니까?
URL 예 :
http://localhost/menuname.de?foo=bar&number=0
답변
경로를 얻으려면 다음을 사용할 수 있습니다.
var pathname = window.location.pathname; // Returns path only (/path/example.html)
var url = window.location.href; // Returns full URL (https://example.com/path/example.html)
var origin = window.location.origin; // Returns base URL (https://example.com)
출처 : https://stackoverflow.com/questions/406192/get-current-url-with-jquery
728x90
반응형
'프로그래밍 언어 > jQuery, ajax' 카테고리의 다른 글
jQuery 드롭 다운에서 선택한 옵션 가져 오기 (0) | 2021.06.09 |
---|---|
jQuery에서 PUT / DELETE 요청을 보내는 방법 (0) | 2021.06.07 |
jQuery에서 5초마다 함수를 호출하는 가장 쉬운 방법 (0) | 2021.06.07 |
Google의 호스팅 된 jQuery를 사용하는 가장 좋은 방법이지만 Google의 호스팅 된 라이브러리로 대체 실패 (0) | 2021.06.04 |
액세스 제어 요청 헤더, jQuery를 사용하여 AJAX 요청의 헤더에 추가됨 (0) | 2021.06.04 |