我想创建一个带有单选按钮的表格。
当悬停在行上时,表格行突出显示。(应用了“悬停”类)单击行更改时,包含的选项按钮变为选中状态并且背景颜色更改(应用了“活动”类)。
到目前为止一切顺利,除了只有在直接单击单选而不是行时才应用活动类。并且活动类不会删除。
http://jsfiddle.net/vincentieo/cH7R9/2/
HTML
<form action="paypal-size-guide.html" method="" accept-charset="utf-8">
<table id="sizeOptions">
<thead>File Size</thead>
<tr>
<td><input type="radio" name="size" value="Large" checked="true"> Large</option></td>
<td>3000 x 2000px</td>
<td>£20</td>
</tr>
<tr>
<td><input type="radio" name="size" value="Medium" > Medium</option></td>
<td>1500 x 1000px</td>
<td>£15</td>
</tr>
<tr>
<td><input type="radio" name="size" value="Small" > Small</option></td>
<td>750 x 500px</td>
<td>£10</td>
</tr>
</table>
</form>
JS
$('#sizeOptions tr').click(function() {
$(this).find('td input:radio').prop('checked', true);
});
$('#sizeOptions tr td input:radio').click(function() {
if($(this).is(':checked')) {
$(this).closest('tr').addClass("active");
} else {
$(this).closest('tr').removeClass("active");
}
});
$('#sizeOptions tr').mouseover(function() {
$(this).addClass("hover");
});
$('#sizeOptions tr').mouseout(function() {
$(this).removeClass("hover");
});
CSS
#sizeOptions {
border-collapse: collapse;
padding: 10px;
}
#sizeOptions td {
padding: 10px;
}
#sizeOptions tr {
border-bottom: solid 1px #b1b1b1;
}