#
whycq0520
2022-02-11 db55e0f6a3f64f4afd6af9314c8c9b130005f5d7
1
2
3
4
5
6
7
$(function () {
    $("tr").mousemove(function () {
        $(this).css("background-color", "pink");
    }).mouseout(function () {
        $(this).css("background-color", "White");
    })
})