JSP页面添加当前时间
Posted sitian2050
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JSP页面添加当前时间相关的知识,希望对你有一定的参考价值。
JSP页面添加当前时间
一、时间格式化
1.引入标签
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
2.时间格式化
<fmt:formatDate>标签用于使用不同的方式格式化日期。
<jsp:useBean id="date" class="java.util.Date" />
当前时间:
<fmt:formatDate value="$date" type="both" dateStyle="long" pattern="yyyy-MM-dd HH:mm:ss" />
二、动态时间
1. 用 js 的方法,在页面动态的显示当前系统时间
a. 在 <head> <head> 中间加入 js
<head>
<script type="text/javascript">
function gettime()
var d = new Date();
document.getElementById("time").innerhtml=d;
window.setTimeout("gettime()",1000);
window.οnlοad=gettime;
</script>
<head>
b.在 body 下面加一个 div
<body>
当前时间<div id=‘time‘></div>
</body>
以上是关于JSP页面添加当前时间的主要内容,如果未能解决你的问题,请参考以下文章