02_22.jsp

来自「jsp数据库编程入门」· JSP 代码 · 共 27 行

JSP
27
字号
<html>
<head>
<title>一个plugin动作的例子</title>
</head>
<%@ page contentType="text/html;charset=GB2312" %>
<body>
<center>
<h2>
一个plugin动作的例子
</h2>
<table width="400" border="2" bordercolor="#FF99FF">
<tr> 
  <td>
  <jsp:plugin type="applet" code="mouseapplet.class" jreversion="1.4" 
               width="500" height="200">
      <jsp:fallback>
           Plugin tag OBJECT or EMBED not supported by browser.
      </jsp:fallback>
  </jsp:plugin>
  </td>
</tr>
</table>
</center>  
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?