gpt4 book ai didi

javascript - 当前页面是基本 url 吗?

转载 作者:行者123 更新时间:2023-11-30 10:46:30 25 4
gpt4 key购买 nike

我需要查看用户所在的当前页面是否是网站的主页,即基本 url 之后没有任何内容。

我这样做是为了从主页中排除一些代码。

最佳答案

if (location.pathname=="/"){
// at the root of the site
}

阅读更多关于(跨浏览器)window.location对象。

编辑:如果您的“根目录”可能由某个名为 index 的文件提供(例如 index.htmlindex.php index.asp 等)您可能需要:

var rootPattern = /^\/(?:index\.[^.\/]+)?$/i;
if (rootPattern.test( location.pathname )){
// …
}

或更明确地说:

switch(location.pathname){
case '/':
case '/index.html':
case '/index.php':
case '/index.asp':
// …
}

关于javascript - 当前页面是基本 url 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8033436/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com