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