JavaScript 関数jspで、日付を印刷しようとしていますが、印刷されません。これはなぜですか?日付はh1タグ内のテキストの前に表示されるはずです。しかし、問題は日付が印刷されないことです! これはなぜですか?
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP - 1</title>
<script>
function jsp() {
<%= new java.util.GregorianCalendar().getTime().toString() %>
}
</script>
</head>
<body>
<h1>
Was I printed first ? Or is it the date... ..
</h1>
<script type="text/javascript">
setTimeout(jsp,2000);
</script>
</body>