#
18516761980
2022-05-30 742107313fb8ebc4df0090c6b5b720fc936c92ee
1
2
3
4
5
6
7
$(function () {
    $("tr").mousemove(function () {
        $(this).css("background-color", "pink");
    }).mouseout(function () {
        $(this).css("background-color", "White");
    })
})