자바스크립트에서 가장 가까운 시간 구하기
가장 가까운 이전 시간 구하기 var prevMinutes = getPrevNearestMinutes(new Date(), 10); function getPrevNearestMinutes(oldDate, minutes) { var oldTime = oldDate.getTime(); var newTime = new Date().setHours(0, 0, 0, 0); var ms = …
가장 가까운 이전 시간 구하기 var prevMinutes = getPrevNearestMinutes(new Date(), 10); function getPrevNearestMinutes(oldDate, minutes) { var oldTime = oldDate.getTime(); var newTime = new Date().setHours(0, 0, 0, 0); var ms = …
// 2021-10-12 02:00:00 var date1 = moment('2021-10-12 02:00:00'); var date2 = moment('2021-10-11 02:00:00'); var duration = moment.duration(date2.diff(date1)); var hours = Math.floor(duration.asHours()); var minutes = duration.minutes(); minutes = minutes === 0 …
자바스크립트 프린트 윈도우 예제 var printWindow = window.open('', '프린트 윈도우 예제', 'height=900,width=800'); printWindow.addEventListener("load", function() { alert("loaded"); }, false); printWindow.document.write('<html><head><title>프린트 윈도우 예제</title>'); printWindow.document.write( [ '<link rel="stylesheet" type="text/css" media="all" href="print.css" />', ].join('') …
jQuery fadein fadeout 예제 fadeIn $(".example") .css({ opacity: "0", visibility: "hidden" }) .stop() .animate( { opacity: 1, }, { duration: 300, start: function () { $(".example").css("visibility", "visible"); }, done: function …