##
mrzhssss
2022-09-12 f43258c4e2394cb6182db9c94f5c5a6d033fd5d4
1
2
3
4
5
6
7
$(function () {
    $("tr").mousemove(function () {
        $(this).css("background-color", "pink");
    }).mouseout(function () {
        $(this).css("background-color", "White");
    })
})