How to get multiple checkbox value on button click?
问题 <td><p><input class="checkbox" type="checkbox" value="Cars.id"> </p> </td> this is list of cars id with checkbox. <button (click)="duplicate()" ><ion-icon name="color-wand"></ion-icon> </button> on this button click i want to get value of all cars in my .ts file. here is the function in .ts duplicate(){ var checkedValue = document.querySelector('.messageCheckbox:checked'); } 回答1: In order to get values of selected multiple checkboxes, No need to use DOM selectors as given in above answers you