返回当前页面URL。
使用 window.location.href 获取当前页面URL。
window.location.href
const currentURL = () => window.location.href;
currentURL(); // 'https://google.com'