Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 249 Bytes

currentURL.md

File metadata and controls

16 lines (12 loc) · 249 Bytes
方法名 标签
currentURL
浏览器,初级

返回当前的 URL。

  • 使用 Window.location.href 获取当前的 URL。
const currentURL = () => window.location.href;
currentURL(); // 'https://www.google.com/'