gpt4 book ai didi

javascript - 如何检查数组中的字符串之一是否在 URL/window.location.pathname 中

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:25:55 27 4
gpt4 key购买 nike

我有一个数组:

var checkURL = ['abc123', 'abc124', 'abc125'];

如何检查数组中的字符串之一是否存在于 window.location.pathname 中?

我个人知道我可以使用:

<script type="text/javascript">
$(document).ready(function () {
if(window.location.href.indexOf("abc123") > -1) {
alert("your url contains the string abc123");
}
});
</script>

最佳答案

使用 for 循环进行线性搜索。

$(document).ready(function () {
var checkURL = ['abc123', 'abc124', 'abc125'];

for (var i = 0; i < checkURL.length; i++) {
if(window.location.href.indexOf(checkURL[i]) > -1) {
alert("your url contains the string "+checkURL[i]);
}
}
});

关于javascript - 如何检查数组中的字符串之一是否在 URL/window.location.pathname 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15344413/

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