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