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