gpt4 book ai didi

javascript - 检查主页是否使用 window.location

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

是否可以使用 window.location 检查我是否在网站的主页/索引上?

我目前正在使用

检查 url
window.location.href.indexOf("/category/something")

但是如何查看主页?它不包含任何段。

注意:我不知道主页 URL 是什么,所以我不能使用像 window.location.href.indexOf("myhomepage.html") 这样的 url 名称/p>

更新:我唯一的线索是主页没有 URL 段。

最佳答案

术语 homepage 本身是一个相当模糊的结构,不是技术上可识别的东西。根据您的屏幕尺寸、设备、凭据、浏览器、日期/时间、地理位置等,您可以有多个不同的登录页面。

确保您位于这些登录页面之一的唯一方法是在对域的初始 GET 请求(例如 http://www.example. com).

因此,如果您已经在该页面上,则没有真正的方法可以知道您是如何到达那里的,以及这是否是该域提供的默认页面,尽管您可以尝试一些技巧得到一个一般的(尽管很容易出错)的想法。

例如,您可以编制一个常用主页路径列表:

var homepages = [ '/', 'index.html', 'index.htm', 'index.php', 'main.html', 'main.htm', 'homepage.html', 'index2.htm' ]; 

然后比较提供的window.location.pathname:

if (homepages.indexOf(window.location.pathname) >= 0) {
// we might be on a "homepage"
}

关于javascript - 检查主页是否使用 window.location,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28394649/

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