jquery多场比赛

时间:2011-08-13 09:12:54

标签: jquery match

如何在jquery中进行多重匹配?匹配id = a + num + b + numid = 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

1 个答案:

答案 0 :(得分:0)

你能在你的正则表达式中添加一个或者 -

if($(this).attr("id").match(/^a\d{1,2}b\d{1,2}$|^a\d{1,2}c\d{1,2}$/))