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