📄 showalbum.jsp
字号:
<%
String one=(String)session.getAttribute("1");
if(one==null)one="one.png";
String two=(String)session.getAttribute("2");
if(two==null)two="two.png";
String three=(String)session.getAttribute("3");
if(three==null)three="three.png";
String four=(String)session.getAttribute("4");
if(four==null)four="four.png";
String five=(String)session.getAttribute("5");
if(five==null)five="five.png";
%>
<html>
<body>
<table>
<tr><td><img src="<%=one%>"><td> <td><img src="<%=two%>">
<tr><td> <td><img src="<%=three%>"><td>
<tr><td><img src="<%=four%>"><td> <td><img src="<%=five%>">
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -