我有一個具有多個行的表具有常見的自定義屬性prId。我怎麼知道沒有。具有相同自定義屬性的行。我不能使用jquery在javascript中查找具有相同自定義屬性的元素數量
<tr id="mainRow2" prId = "2"></tr>
<tr id="subRow2_1" prId = "2"></tr>
<tr id="subRow2_2" prId = "2"></tr>
<tr id="subRow2_3" prId = "2"></tr>
<tr id="mainRow5" prId = "5"></tr>
<tr id="subRow5_1" prId = "5"></tr>
<tr id="subRow5_2" prId = "5"></tr>
<tr id="subRow5_3" prId = "5"></tr>
<tr id="subRow5_4" prId = "5"></tr>
使用querySelectorAll() – zloctb