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