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