我正在尝试使用正则表达式来查找变量是否包含输入字段。
我变量中的 html 可能是这样的。
<span>test here</span>
或者
<span><input type="text"></span>
我的代码就像
//$(this) is be my variable
if($(this).html().match("/<input type='text'>/")){
console.log('match found')
}
它似乎无法找到匹配项。任何人都可以帮助我吗?多谢!