2011-08-13 83 views
0

如何在jquery中進行多重匹配?匹配id = a + num + b + numid = a + num + c + num(num範圍從1-99)?謝謝。jquery multi match

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

你能不能把一個或者您正則表達式 -

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