mrzhssss
2022-09-13 3536050491417982763e2f2f9d7c0d9982e16360
1
2
3
4
5
6
7
$(function () {
    $("tr").mousemove(function () {
        $(this).css("background-color", "pink");
    }).mouseout(function () {
        $(this).css("background-color", "White");
    })
})