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