gpt4 book ai didi

javascript - 定位 window.location.pathname

转载 作者:行者123 更新时间:2023-11-29 22:32:41 25 4
gpt4 key购买 nike

我有一个类似于此的网址:

www.mysite.com/products/

我用它来测试路径名:

if (/\/products\//.test(window.location)) {
_gaq.push(['_trackPageview', '/products/landing']);
}

但我遇到的问题是上面的内容也会对子文件夹执行,这是我不希望的:

www.mysite.com/products/sub-folder/

我认为 window.location.pathname 比上面的 jQuery 更能帮助我。但是我不确定如何只定位顶级目录,而不是其中的子目录?

最佳答案

在正则表达式末尾添加一个 $:

if (/\/products\/$/.test(window.location)) {
_gaq.push(['_trackPageview', '/products/landing']);
}

示例:http://jsfiddle.net/niklasvh/feK4A/

关于javascript - 定位 window.location.pathname,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6392486/

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