TA的每日心情 | 开心 2020-11-11 23:19 |
---|
签到天数: 20 天 [LV.4]偶尔看看III 成长值: 23750
|
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
- <%@ taglib prefix="s" uri="/struts-tags" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Insert title here</title>
- </head>
- <body>
- <s:form action="if"> <!-- 提交给if.action -->
- <s:textfield name="name" label="姓名:"></s:textfield>
- <s:submit value=" 提交 "></s:submit>
- </s:form>
- <!-- 利用request参数判断 -->
- <s:if test="#parameters.name[0] == 'Kurt'"> <!-- 如果参数为Kurt -->
- Hello,Kurt.
- </s:if>
- <s:elseif test="#parameters.name[0] == 'Matt'"> <!-- 如果参数为Matt -->
- Hello,Matt.
- </s:elseif>
- <s:else>
- Hello,Other Buddies. <!-- 否则 -->
- </s:else>
- </body>
- </html>
复制代码 |
|