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