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