wang..123
2022-03-25 f3ed1f9e98e13b9fb631e2fab851be15b7dde206
1
2
3
4
5
6
7
$(function () {
    $("tr").mousemove(function () {
        $(this).css("background-color", "pink");
    }).mouseout(function () {
        $(this).css("background-color", "White");
    })
})