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