search 조건으로 년도, 분기가 들어가는 경우가 있다. 초기 search조건을 오늘날짜 기준으로 년도, 분기 셋팅하는 방법. [ html Code ] ... 1분기 2분기 3분기 4분기 ... [ JavaScript Code ] ... var now = new Date(); var year = now.getFullYear(); var mon = (now.getMonth() + 1) > 9 ? ''+(now.getMonth() + 1) : '0'+(now.getMonth() + 1); // 년도 selectbox만들기 for(var i = 2018 ; i