我的 HTML 代码是
<table>
<tr><td><input type="checkbox"></td><td><input type="checkbox"></td></tr>
<tr><td><input type="checkbox"></td><td><input type="checkbox"></td></tr>
<tr><td><input type="checkbox"></td><td><input type="checkbox"></td></tr>
<tr><td><input type="checkbox"></td><td><input type="checkbox"></td></tr>
<tr><td><input type="checkbox"></td><td><input type="checkbox"></td></tr>
<tr><td><input type="checkbox"></td><td><input type="checkbox"></td></tr>
<tr><td><input type="checkbox"></td><td><input type="checkbox"></td></tr>
<tr><td><input type="checkbox"></td><td><input type="checkbox"></td></tr>
</table>
我的 JQuery 代码是(不是我写的,一些 Stackoverflow 的使用帮助了我,我感谢他)
$('TABLE TBODY TR').each(function()
{
var lastd = $(this).children('tr td:last').find('input:checkbox');
var parentlast = lastd.parent();
lastd.remove();
parentlast.append("<input type='radio'>"); // want to add the same properties of the removed checkbox
});
请有人帮助我。