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