gpt4 book ai didi

javascript - 如何在javascript中获取和比较子字符串?

转载 作者:行者123 更新时间:2023-11-29 18:28:45 25 4
gpt4 key购买 nike

对你来说可能是愚蠢的Q。我通过使用 document.URL 获取 URL

现在我想检查该 URL 是否包含我的输入字符串。

有什么办法可以做到这一点,或者我必须进行手动处理。?

非常感谢您的帮助。

最佳答案

有几种检查方法。 document.URL 是一个 String,因此您可以使用例如:

 //use indexof
document.URL.indexOf('this is my input string') > -1;

//use the String.search method (equivalent to indexOf)
document.URL.search('this is my input string') > -1

//use a regular expression with method 'test'
/this is my input string/i.test(document.URL);

关于javascript - 如何在javascript中获取和比较子字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10493391/

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