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