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