📄 money.jsp
字号:
<%@ page contentType="text/html;charset=GB2312" %>
<html>
<body>
<form action="" method="post">
<input type="text" name="money">
<input type="submit" value="submit" name="submit">
</form>
<% String money=request.getParameter("money");
if(money==null)
money="0";
%>
<jsp:plugin type="applet" code="money.class" height="40" width="320" >
<jsp:params>
<jsp:param name="money" value="<%=money%>"/>
</jsp:params>
<jsp:fallback>无法加载Applet</jsp:fallback>
</jsp:plugin>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -