JSP中 alert不显示的问题 10
<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01Transitional//EN"><html><head><title>1.html</t...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>1.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
<script type="text/javascript">
function showDate(){
var today=new Date();
year=today.getYear();
month=today.getMonth();
date=today.getDate();
alert=("今天是"+year+"年"+month+"月"+date+"日");
}
</script>
</head>
<body>
<input type="button" onClick="javascript:showDate();" value="查看今天日期"/>
</body>
</html>
HTML 打错了 展开
<html>
<head>
<title>1.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
<script type="text/javascript">
function showDate(){
var today=new Date();
year=today.getYear();
month=today.getMonth();
date=today.getDate();
alert=("今天是"+year+"年"+month+"月"+date+"日");
}
</script>
</head>
<body>
<input type="button" onClick="javascript:showDate();" value="查看今天日期"/>
</body>
</html>
HTML 打错了 展开
展开全部
产生这种问题就说明JSP页面发生错误了或者某些原因导致没有执行到这段代码,需要开始按照步骤查找问题。
1、打开浏览器的开发者模式,按F12键,最好用谷歌或者火狐比较好。
2、在调试面板切换到控制台console
3、在jsp重新发起请求,在控制台可以看到相应的红色报错信息。
4、直接点击错误,即可以看到跳转到对应发生错误的代码位置,修改即可。
1、打开浏览器的开发者模式,按F12键,最好用谷歌或者火狐比较好。
2、在调试面板切换到控制台console
3、在jsp重新发起请求,在控制台可以看到相应的红色报错信息。
4、直接点击错误,即可以看到跳转到对应发生错误的代码位置,修改即可。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
您好,下面的,您看看,改了一下:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
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>
<title>
用户登录
</title>
<script language="JavaScript" type="text/javascript">
function userLogin(){
var userName=document.getElementById("username");
var password=document.getElementById("password");
if(userName.value == "" && userName.value.length<5){
alert("请输入用户名!")
userName.focus();
return false;
}else if(password.value == "" && password.value.length<5){
alert("请输入用户密码!");
password.focus();
return false;
}else{
return true;
}
}
function userReg(){
document.frmAction.action="user_add.jsp";
document.frmAction.submit();
}
</script>
</head>
<body bgcolor="#ffffff">
<br>
<br>
<br>
<br>
<FORM method="POST" name="frmAction" >
<table border="1px #76aef0 solid" cellspacing="0" cellpadding="1" align="center" bgColor="#E4E8EF">
<tr>
<td width="50%">用户名:</td>
<td width="50%"><input type="text" name="username" /></td>
</tr>
<tr>
<td width="50%">密码:</td>
<td width="50%"><input type="password" name="password"/></td>
</tr>
<tr>
<td width="50%" align="center">
<input type="button" onClick="userLogin()" value="登录" />
</td>
<td width="50%" align="center">
<input type="button" onClick="userReg()" value="注册" />
</td>
</tr>
</table>
</FORM>
</body>
</html>
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
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>
<title>
用户登录
</title>
<script language="JavaScript" type="text/javascript">
function userLogin(){
var userName=document.getElementById("username");
var password=document.getElementById("password");
if(userName.value == "" && userName.value.length<5){
alert("请输入用户名!")
userName.focus();
return false;
}else if(password.value == "" && password.value.length<5){
alert("请输入用户密码!");
password.focus();
return false;
}else{
return true;
}
}
function userReg(){
document.frmAction.action="user_add.jsp";
document.frmAction.submit();
}
</script>
</head>
<body bgcolor="#ffffff">
<br>
<br>
<br>
<br>
<FORM method="POST" name="frmAction" >
<table border="1px #76aef0 solid" cellspacing="0" cellpadding="1" align="center" bgColor="#E4E8EF">
<tr>
<td width="50%">用户名:</td>
<td width="50%"><input type="text" name="username" /></td>
</tr>
<tr>
<td width="50%">密码:</td>
<td width="50%"><input type="password" name="password"/></td>
</tr>
<tr>
<td width="50%" align="center">
<input type="button" onClick="userLogin()" value="登录" />
</td>
<td width="50%" align="center">
<input type="button" onClick="userReg()" value="注册" />
</td>
</tr>
</table>
</FORM>
</body>
</html>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询