html-img.jsp
来自「jakarta-struts-1.2.4-src」· JSP 代码 · 共 53 行
JSP
53 行
<%@ taglib uri="/tags/struts-html" prefix="html" %>
<html>
<head>
<title>Test struts-html:img Tag</title>
</head>
<body>
<div align="center">
<h1>Test struts-html:img Tag</h1>
</div>
<table border="1" cellspacing="2" cellpadding="4" align="center">
<tr>
<td>
Standard img tag
</td>
<td>
<img src="struts-power.gif">
</td>
</tr>
<td>
Struts img tag via page attribute
</td>
<td>
<html:img page="/struts-power.gif" />
</td>
</tr>
<tr>
<td>
Struts img tag via action attribute
</td>
<td>
<html:img action="/html-img-action" />
</td>
</tr>
<tr>
<td>
Struts img tag via page attribute, context relative
</td>
<td>
<html:img page="/exercise/struts-power.gif" contextRelative="true"/>
</td>
</tr>
<tr>
<td>
Struts img tag via page attribute, default module
</td>
<td>
<html:img page="/exercise/struts-power.gif" module="/"/>
</td>
</tr>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?