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