Fila de tabla seleccionada de JQuery

CSS


.test_table tr:hover{
    background:#7cbcfc
}
.tr_selected{
    background:#7cbcfc
}

JS


$(".test_table tbody").on('click', 'tr', function () {
    $(this).siblings('tr').removeClass('tr_selected');
    $(this).addClass('tr_selected');
});

efecto

Fila de tabla seleccionada de JQuery

Supongo que te gusta

Origin blog.51cto.com/weiyuqingcheng/2550328
Recomendado
Clasificación