logon.jsp
来自「用户登入」· JSP 代码 · 共 25 行
JSP
25 行
<%@ page language="java" contentType="text/html; charset=gb2312"%>
<%@ page import="com.javabean.Image" %>
<% Image logon=(Image)request.getAttribute("logonimg"); %>
<html>
<head>
<title>用户登录</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<center>
<table border="1" style="margin-top:150" width="250" height="90">
<tr height="20" bgcolor="lightgrey"><td align="center">欢迎登录!</td>
<tr>
<td align="center">
您单击了“用户登录”图片!<br>
鼠标单击时的位置为
X:<%=logon.getX() %>
Y:<%=logon.getY() %>
</td>
</tr>
</table>
<a href="index.jsp">返回</a>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?