在頁面載入的時候自動為日期外掛程式新增目前日期。
<script type="text/javascript"> $(document).ready(function(){ $("#startTime").val(formatDate()); $("#endTime").val(formatDate()); }
jsp頁面的body部分程式碼:
<td><label>日期:</label></td> <td><input type="text" id="startTime">至:<input type="text" id="endTime"></td>