$(document).ready(function() { // 行をクリックしたら $('tr').click(function(event) { $(':checkbox', this).trigger('click'); }); });
$(document).ready(function() { $('tr').click(function(event) { // チェックボックスがチェックされたら無視 if (event.target.type !== 'checkbox') { $(':checkbox', this).trigger('click'); } }); });