//<script src="<!--{$smarty.const.BASE_PATH}-->/js/public/My97DatePicker/WdatePicker.js"></script>
html中引入WdatePicker.js文件
一、开始结束时间相互限制
例1.两个input中时间相关联
<tr>
<td>开始时间<label class="must-tag">*</label></td>
<td>
<input type="text" name="start_time" id="start_time" value="" class="input-normal search Wdate" onclick="WdatePicker({maxDate:‘#F{$dp.$D(\‘end_time\‘)}‘})">
</td>
<td></td>
</tr>
<tr>
<td>结束时间<label class="must-tag">*</label></td>
<td>
<input type="text" name="end_time" id="end_time" value="" class="input-normal search Wdate" onclick="WdatePicker({minDate:‘#F{$dp.$D(\‘start_time\‘)}‘})">
</td>
<td></td>
</tr>
例2:和现在时间相关联
<td width="140px">
<input id="startTime" name="startTime" type="text" class="input-normal search Wdate"
onclick="WdatePicker({maxDate:‘#F{$dp.$D(\‘endTime\‘)||\‘new Date()\‘}‘})" />
</td>
<td width="140px">
<input id="endTime" name="endTime" type="text" class="input-normal search Wdate" onclick="WdatePicker({minDate:‘#F{$dp.$D(\‘startTime\‘)}‘,maxDate:new Date()})" />
</td>
二、显示格式
格式和时间控制相结合
<td width="140px">
<input id="startTime" name="startTime" type="text" class="input-normal search Wdate"
onclick="WdatePicker({dateFmt:‘yyyy-MM‘,maxDate:‘#F{$dp.$D(\‘endTime\‘)||\‘new Date()\‘}‘})" />
</td>
<td width="40px">
<label for="endTime">至:</label>
</td>
<td width="140px">
<input id="endTime" name="endTime" type="text" class="input-normal search Wdate"
onclick="WdatePicker({dateFmt:‘yyyy-MM‘,minDate:‘#F{$dp.$D(\‘startTime\‘)}‘,maxDate:new Date()})" />
</td>