Java web jsp頁面實現日歷的顯示 (/WdatePicker控件)


<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
   
    <title>My JSP 'index.jsp' starting page</title>
  <script language="javascript" type="text/javascript"
  src="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); //將日期時間格式化 
%> 
</script>
 <div id="div1"></div>
<script>
WdatePicker({eCont:'div1',onpicked:function(dp){alert()}})
</script>
  </head>
 
  <body>
    
  </body>
</html>


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM