프로그래밍 언어/jQuery, ajax

jQuery로 현재 URL을 얻는 방법

Rateye 2021. 6. 7. 08:24
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
반응형