gpt4 book ai didi

jQuery 如果 Location.Pathname 包含

转载 作者:行者123 更新时间:2023-12-03 22:43:41 33 4
gpt4 key购买 nike

我目前正在使用以下代码来定位单个页面,例如 http://my-website.com/about/

    if (document.location.pathname == "/about/") {
//Code goes here
}

我想知道如何对具有特定父页面的所有页面执行相同的操作,例如以下示例中的 /about/..

http://my-website.com/about/child-page1

http://my-website.com/about/child-page2

最佳答案

使用indexOf - 它将测试所有以/about/开头的路径名是否为真

if (document.location.pathname.indexOf("/about/") == 0) {
//Code goes here
}

关于jQuery 如果 Location.Pathname 包含,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19461395/

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