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