初学JSP,为啥定义JS变量时出错了?
初学,烦请各位帮忙看看
<%@ page contentType="text/html;charset=GB2312"%>
<%@ page language=javascript %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%!
tim = "本地时间"; --红XX打在这行
%>
<html>
<head>
<title>My JSP 'MyJsp.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
This is my JSP page. <br>
<% out.println("1+2="+tim); %>
</body>
</html>