JQuery 36

211007_table,click,addClass,removeClass

DOCTYPE html> Insert title here table { border-collapse: collapse; } td { border: 1px solid gray; } .small img{ width: 80px; height: 100px; } .large{ width: 280px; height: 330px; } p { font-weight: bold; } .select{ background-color: #ffffe0; color: gray; font-size: 1.2em; } $(function () { $("a.small").click(function(e) { //기본이벤트(링크되는거)를 무효화 e.preventDefault(); //td에 select클래스를 추가 $(this).parent..

JQuery 2021.10.08