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