jQuery 썸네일형 리스트형 Jquery click , hover 이벤트 추가 var Row = $("" + "" + this.VesselID + "" + "" + this.VesselName + "" + "" + this.VesselType + "" + "" + this.VesselGroup + "" + "" + this.Displacement + "" + "" + this.Size + "" + "" + this.Speed + ""); var newTd = $(""); var newInput = $("") .click(function() { alert($(this).attr('id')); location.replace("users/userinfo/" + $(this).attr('id')); }); newTd.append(newInput); Row.append(newTd); Row.. 더보기 이전 1 다음