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