UNPKG

yangtao-js

Version:

A JavaScript utility library , JavaScript 实用工具库

14 lines (11 loc) 286 B
/** * @description:获取当前页面的URL * @param {*} null * @return { String } 当前页面的URL */ const getCurrentUrl = () => window.location.href; /** 用法 const result = getCurrentUrl() console.log(result) //=>http://www.warblerfe.top */ export default getCurrentUrl;