currentURL - 获取当前页面URL

优质
小牛编辑
127浏览
2023-12-01

返回当前页面URL。

使用 window.location.href 获取当前页面URL。

const currentURL = () => window.location.href;
currentURL(); // 'https://google.com'