這是jsp界面代碼,原理我知道,但不清楚寫在哪裡。
function calendarSearch() {
var sd = $('#startDate').datebox('getValue'), ed = $('#endDate').datebox('getValue');
if (sd == '' || ed == '') { alert('請選擇日期!'); return false; }
if (sd >= ed) { alert('開始日期不能大於結束日期!'); return false }
//你的查詢代碼
}