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