我被赋予了这段代码以放置在我的 html 页面中,但我对 javascript 一无所知,所以我不知道将它放置在哪里以及放置它的类型。
$('input[type=radio]').change(function() {
$('input[type=radio]').each(function(index) {
$(this).closest('tr').removeClass('selected');
});
$(this).closest('tr').addClass('selected');
});