如何在jquery中进行多重匹配?匹配id = a + num + b + num
或id = a + num + c + num
(num范围是1-99)?感谢。
if($(this).attr("id").match(/^a\d{1,2}b\d{1,2}$/), $(this).attr("id").match(/^a\d{1,2}c\d{1,2}$/))
//only work the last match
答案 0 :(得分:0)
你能在你的正则表达式中添加一个或者 -
if($(this).attr("id").match(/^a\d{1,2}b\d{1,2}$|^a\d{1,2}c\d{1,2}$/))