【知识点滴】你还在用substring解析url吗?用URL()
2021-01-26 本文已影响0人
Joyourlife
注:写给js入门者
先看一段代码:
// 获得host
href = location.href;
n = href.indexOf('://')+3; //开始位置
host= href.substring(n, href.indexOf('/', 8));
其实有这么一个东东,叫URL。看代码:
url = new URL(location.href);
console.log(url.host);
console.log(url.pathname);