삼분공부/JS

[javascript] location.href

케이쓰리 2024. 9. 24. 21:50

 

업무하다 찾아보게되서 적어봄.

 

 

 

이건 알지... 

console.log(location.href)
// https://120.0.0.1:3030/admin/order/history

 

 

근데.. 여기서 포트까지만 출력하는게 뭐였더라!!

 

let url = new URL(location.href);
let baseUrl = url.origin;

console.log(baseUrl);  // http://120.0.0.1:3030 출력

 

 

끝.