whycq
2022-02-10 308c398b62c2319a78f7d9dae6aea8916da95cab
1
2
3
4
5
6
7
$(function () {
    $("tr").mousemove(function () {
        $(this).css("background-color", "pink");
    }).mouseout(function () {
        $(this).css("background-color", "White");
    })
})