jsp里input中获取当前时间,与WdatePicker配合使用


<script language="javascript" type="text/javascript" src="${ctx}/js/My97DatePicker/WdatePicker.js"></script>

<script type="text/javascript">

<%  
          java.text.SimpleDateFormat formatter = new java.text.SimpleDateFormat("yyyy-MM-dd");
          java.util.Date currentTime = new java.util.Date();//得到当前系统时间
          String str_date = formatter.format(currentTime); //将日期时间格式化 
 %> 

if($.trim($("#begintime_id").val())!="")
{
      if($.trim($("#endtime_id").val())=="")
      {
            alert("结束时间不允许为空!");
            return;
      }
}
if($.trim($("#endtime_id").val())!="")
{
      if($.trim($("#begintime_id").val())=="")
      {
            alert("开始时间不允许为空!");
            return;
      }
}

</script>

<input id="begintime_id" name="begintime" type="text" onFocus="WdatePicker({maxDate:'#F{$dp.$D(\'endtime_id\')}'})" readonly="readonly" value="<%=str_date%>" class="Wdate" Style="{width:86px}"/>

 

<input id="endtime_id" name="endtime" onFocus="WdatePicker({minDate:'#F{$dp.$D(\'begintime_id\')}'})" readonly="readonly" type="text" value="<%=str_date%>" class="Wdate" Style="{width:86px}"/>

 

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM