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