1
我有另一位程序員的Jquery腳本,允許我在列表中選擇/取消選擇複選框。它對單個列表非常有用,但我希望能夠在頁面上顯示更多列表。我不知道該怎麼做。選擇/取消選擇多個列表中的複選框
當檢查所有子主題時,主點也會自動檢查。我想知道的是如何讓它工作,以便所有列表都相互獨立。
的代碼是在這裏: https://codepen.io/matthains/pen/akZGRv
<ul><!-- First topic here -->
<li><input type="checkbox" id="select_all"/> Main Point is here</li>
<li><input class="checkbox" type="checkbox" name="check[]">Subpoint 1</li>
<li><input class="checkbox" type="checkbox" name="check[]">Subpoint 2</li>
<li><input class="checkbox" type="checkbox" name="check[]">Subpoint 3</li>
</ul>
<ul><!-- Second topic here -->
<li><input type="checkbox" id="select_all"/> 2nd Main Point is here</li>
<li><input class="checkbox" type="checkbox" name="check[]">Subpoint 1</li>
<li><input class="checkbox" type="checkbox" name="check[]">Subpoint 2</li>
<li><input class="checkbox" type="checkbox" name="check[]">Subpoint 3</li>
</ul>