JSP57 AJAX.serialize() 시리얼라이즈 사용.. jsp for(var i = 0; i < uniqueId.length; i++){ var id = uniqueId[i]; var left = parseInt($("#"+id).css("left")); var top = parseInt($("#"+id).css("top")); var width = parseInt($("#"+id).css("width")); var height = parseInt($("#"+id).css("height")); var class_nm = $("#"+id).attr('class'); var sTempValue = id+"|"+left+"|"+top+"|"+width+"|"+height; $('form[name=detailForm]').append($('').attr('type'.. 2024. 1. 27. [Javascript] 자바스크립트 이벤트 전파 막기 event.preventDefault()// 현재 이벤트의 기본 동작을 중단한다event.stopPropagation()//현재 이벤트가 상위로 전파되지 않도록 중단한다.event.stopImmediateProtagation()//현재 이벤트가 상위뿐 아니라 현재 레벨에 걸린 달느 이벤트도 동작하지 않도록 중단한다.return false//jQuery를 사용할 때는 위의 두개 모두를 수행한 것과 같고,//jQuety를 사용하지 않을 떄는 event.preventDefault() 와 같다. 2023. 12. 8. 이미지를 못찾아 오류 났을 때 onerror = "this.src = ' 이미지 경로 ' " onerror="this.src='/resources/images/insight-basic50x50.png'" 2023. 10. 13. 10분 만에 하는 초 속임수 페이지네이션 처리(paging 페이징처리) 스크립트 var itemsPerPage1 = 10; // 한 페이지당 표시할 열의 수 var currentPage1 = 1; // 현재 페이지 var totalRows1 = $("table#allTable tbody tr").length; // 전체 행 수 var totalPages1 = Math.ceil(totalRows1 / itemsPerPage1); // 전체 페이지 수 // 초기 페이지 업데이트 updatePage1(); // 이전 페이지로 이동 $("#prevPage1").on("click", function() { if (currentPage1 > 1) { currentPage1--; updatePage1(); } }); // 다음 페이지로 이동 $("#nextPage1").on("click.. 2023. 10. 7. 초마다 이미지 변경하기 var ObjectArray = []; //이미지 셋팅 ObjectArray[1] = "/resources/images/bell.png"; ObjectArray[2] = "/resources/images/bell2.png"; ObjectArray[3] = "/resources/images/bell.png"; ObjectArray[4] = "/resources/images/bell2.png"; ObjectArray[5] = "/resources/images/bell.png"; ObjectArray[6] = "/resources/images/bell2.png"; ObjectArray[7] = "/resources/images/bell.png"; ObjectArray[8] = "/resources/images.. 2023. 10. 6. [Javascript]일정 시간마다 이미지 변경하기(setTimeout ,setInterval ) - setTimeout : 일정 시간 후 한번 실행.- setInterval : 일정 시간마다 반복 실행.- clearTimeout : 일정 시간 후 한번 실행하는 것을 중지 한다.- clearInterval : 일정시간마다 반복하는 것을 중지 한다. 2023. 10. 6. 이전 1 2 3 4 5 6 ··· 10 다음