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