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