当前位置:编程学习 > JSP >>

哪位大侠看看我这段JSP代码的问题出在哪里? 谢谢!

<%@ page contentType="text/html;charset=gb2312" language="java" import="java.sql.*"%> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=gb2312" /> </head> <body> <h1>留言请登陆</h1> <a href="ly.jsp">游客进入</a> <form action="login.jsp" name="f" method="post" onsubmit="return check()"> 用户名:<input type="text" name="username"><p> 密  码:<input type="password" name="ps" ><p> <input type="submit" value="登陆"> <input type="reset" value="重新填写"> </form> <script type="text/javaScript"> function check(){ if(f.username.value=="") { alert("您没有输入用户名"); f.username.focus(); return false; } if(f.ps.value=="") { alert("您没有输入密码"); f.ps.focus(); return false; } } </script> </body> </html>
补充:在<h1>留言请登陆</h1>处总是会警告:编码 GBK 的不可映射字符
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,