gpt4 book ai didi

javascript - 搜索 window.location.href 字符串的更有效方法?

转载 作者:行者123 更新时间:2023-11-29 17:20:24 25 4
gpt4 key购买 nike

是否有更有效的方法来搜索 window.location.href?

window.location.href: http://www.example.com/6CATA/folder/file.html

我目前的代码是:

var searchWinHref = window.location.href;
if(searchWinHref.indexOf("/6CATA/") > -1) {
alert('6CATA is in the window.location.href');
}

效果很好,但我正在尝试学习尽可能优化代码的方法,如果我需要在一个页面上多次执行此操作,我很想知道是否有更有效的方法是吗?

编辑:

为了澄清,我需要偶尔搜索不同变体的 URL,例如:6CATA 和 6CATB 等。

最佳答案

不,那很好。您可以使用 location.pathname.split('/').contains("6CDATA"),但这是完全等效的。如果您想优化代码并真正关心这种微优化,请在需要时将结果缓存在变量中几次。

关于javascript - 搜索 window.location.href 字符串的更有效方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13363308/

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