//날짜 형식 유효성 검사

function isDatetime(d)

{

var re = /^(19|20)\d{2}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[0-1]) (0[0-9]|1[0-9]|2[0-3]):([0-5][0-9]):([0-5][0-9])$/;

return re.test(d);

}

"yyyy-mm-dd HH:mm:ss"

+ Recent posts