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