//全选
$(":checkbox:first").click(function()
{
var ss=$(":checkbox:first").prop("checked");
if(ss)
{
$(":checkbox").prop("checked",true);
}else
{
$(":checkbox").prop("checked",false);
}
});
//删除
$("button:eq(1)").click(function()
{
$("#tabletwo :checked").not("[id]").parent().parent().remove();
});
//得到单选的值
var sex = $('[name="sex"]:checked').val();