1. 程式人生 > >jquery點選table行 變顏色

jquery點選table行 變顏色

  $("#tbody3  tr").mouseover(function () {
                    $(this).css("background-color", "#FFE8FF");
                });
                $("#tbody3  tr").mouseout(function () {
                    $(this).css("background-color", "");
                });