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