注:写给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);
注:写给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);
本文标题:【知识点滴】你还在用substring解析url吗?用URL()
本文链接:https://www.haomeiwen.com/subject/njogzktx.html
网友评论