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