gpt4 book ai didi

javascript - 如何检查android浏览器中的URL是否包含给定的字符串?

转载 作者:行者123 更新时间:2023-12-03 07:22:54 25 4
gpt4 key购买 nike

我正在尝试使用以下代码检查字符串是否是各种 Android 浏览器中页面 URL 的一部分。它不适用于任何 Android 设备。当我在 iOS 设备或桌面(Windows 操作系统)浏览器中 checkin 时,它工作正常。

有什么想法吗?

<script type="text/javascript">
$(document).ready(function () {
if(window.location.href.indexOf("apieceofstring") > -1){
alert("success");
}
});
</script>

最佳答案

The indexOf() method returns the index within the calling String object of the first occurrence of the specified value, starting the search at fromIndex. Returns -1 if the value is not found.

这意味着你的陈述总是正确的,你需要做这样的事情

if (window.location.href.indexOf("apieceofstring") > -1) {
alert("success");
}

关于javascript - 如何检查android浏览器中的URL是否包含给定的字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36126975/

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