#
whycq
2022-09-12 7ede62a9384aabfecdf38d1f01f771ae10a7f160
1
2
3
4
5
6
7
$(function () {
    $("tr").mousemove(function () {
        $(this).css("background-color", "pink");
    }).mouseout(function () {
        $(this).css("background-color", "White");
    })
})