반응형
var now = new Date();
var year= now.getFullYear();
var mon = (now.getMonth()+1)>9 ? ''+(now.getMonth()+1) : '0'+(now.getMonth()+1);
var day = now.getDate()>9 ? ''+now.getDate() : '0'+now.getDate();
var chan_val = year + '-' + mon + '-' + day;
$(this).val(chan_val);
오라클 sysdate 처럼 간단한거 없을까 ?
반응형
'Web > Javascript_Jquery' 카테고리의 다른 글
인터넷 주소 유효성 검사, 유효성 검사. (0) | 2016.02.26 |
---|---|
jQuery FullCalendar 달력, 스케줄 플러그인 (0) | 2016.02.26 |
AJAX 정리 (0) | 2016.01.28 |
event.stopPropagation(), event.preventDefault () 이해하기 (0) | 2015.12.29 |
달력 , 자바스크립트 달력, 쓰기 편한거 (0) | 2015.12.23 |
댓글