$(document).ready(function(){
// 특정 테이블의 row에 마우스 오버시 색상변경
$( ".tb-list tbody tr" ).on( "mouseover", function() {
$( this ).css( "background-color", "#f7f7f7" );
//$( this).children("td").css( "cursor", "pointer" );
});
$( ".tb-list tbody tr" ).on( "mouseleave", function() {
$( this ).css( "background-color", "white" );
});
});
'[ Web 관련 ] > jQuery' 카테고리의 다른 글
마우스 오른쪽 버튼 막기 등 (0) | 2021.03.09 |
---|---|
아코디언 메뉴, 드롭다운 메뉴 샘플 (0) | 2021.02.22 |
tr생성, 현재 tr 지우기 (0) | 2021.02.12 |
한글만 입력, 숫자만 입력 (0) | 2020.11.27 |
(CI restAPI) ajax put 전송 (0) | 2020.09.09 |