**
1.jstl标签写法,
**
主要使用的是 fn,使用的时候,需要引入
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<c:choose>
<c:when test="${fn:contains(item.name,'全能')}">
<strong>
<font color="red"><s:property value="item.name" /> </font>
</strong>
</c:when>
<c:otherwise>
<s:property value="item.name" />
</c:otherwise>
</c:choose>
2.Struts2标签写法:
<s:if test="item.name.contains(\"全能\")">
<strong>
<font color="red"><s:property value="item.name" /> </font>
</strong>
</s:if>
<s:else>
<s:property value="item.name" />
</s:else>
3.JSP写法:
对于传递过来的参数的判断,可以使用如下。
<%
String teamName1 = new String(request.getParameter("teamName")
.getBytes("ISO8859-1"), "UTF-8");
if (teamName1.contains("男")) {
%>
<input type="hidden" id="sex" name="athlete.sex" value="男" />
<%
} else if (teamName1.contains("女")) {
%>
<input type="hidden" id="sex" name="athlete.sex" value="女" />
<%
}
%>