我有几个这样的输入框:
<input type="checkbox" name="checkbox_item[500]" />
<input type="checkbox" name="checkbox_item[10]" />
<input type="checkbox" name="checkbox_item[2]" />
<input type="checkbox" name="checkbox_item[1]" />
<input type="checkbox" name="checkbox_item[]" />
所以我正在使用以下正则表达式模式checkbox_item\[\d+\]
,它在我的正则表达式测试器中运行良好,但我无法让它与 Jquery 一起使用。这是我的 Jquery 代码:
console.log($("input:regex(name, /checkbox_item\[\d+\]/)").length);
我期待 4,但得到了 28!
有人可以对此有所了解吗?
谢谢