.
18516761980
2022-04-07 fffbbc439d9bebf9ca916a5b0a585b7864b50803
1
2
3
4
5
6
7
$(function () {
    $("tr").mousemove(function () {
        $(this).css("background-color", "pink");
    }).mouseout(function () {
        $(this).css("background-color", "White");
    })
})