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