首页 > 代码库 > 【jsp】如何选择性的显示页面元素

【jsp】如何选择性的显示页面元素

使用c标签或者s标签的 if.

(1)c标签.比如:<c:if test="${ex==1}">男</c:if>
(2)s标签.比如 <s:if test="#request.remark"><img src="http://www.mamicode.com/${userImg}" /></s:if><s:else><img src="http://www.mamicode.com/222.jpg" /></s:else>
当为true时候,内容显示.
使用c标签和s标签,之前,要先在页面上进行引用.引用代码:
<%@taglib prefix="s" uri="/struts-tags"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

【jsp】如何选择性的显示页面元素