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