gpt4 book ai didi

javascript - 如何检查字符串是否存在于jquery中的变量中

转载 作者:数据小太阳 更新时间:2023-10-29 05:39:52 26 4
gpt4 key购买 nike

我有这样的变量

var myVar = "The man is running"

pattern = "运行"

我想通过 jquery 检查它是否包含单词“run”

喜欢

if($(myVar).(:contains(pattern)))
return true

这可能吗

最佳答案

RegExp 选项...只是因为..RegExp。

var pattern = /run/;

//returns true or false...
var exists = pattern.test(myVar);

if (exists) {
//true statement, do whatever
} else {
//false statement..do whatever
}

关于javascript - 如何检查字符串是否存在于jquery中的变量中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11732815/

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