JSFiddle - React, Tailwind, and code Playground
by Blender
HTML
<input type="checkbox" value="1" class="trchoose">
<input type="checkbox" value="1" class="trchoose">
<input type="checkbox" value="1" class="trchoose">
<input type="checkbox" value="1" class="trchoose">
JavaScript
$('.trchoose').on('change', function() {
alert($(this).val());
});