发布于 2015-08-17 14:47:56 | 92 次阅读 | 评论: 0 | 来源: 网络整理

<c:if>标签计算表达式,只有当表达式的值为true时,才显示其主体内容。

属性:

<c:if>标签具有以下属性:

属性 描述 必须? 默认
test 条件计算 Yes None
var 变量名称来存储条件的结果 No None
scope 变量的范围来存储条件的结果 No page

例子:


<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title><c:if> Tag Example</title>
</head>
<body>
<c:set var="salary" scope="session" value="${2000*2}"/>
<c:if test="${salary > 2000}">
   <p>My salary is: <c:out value="${salary}"/><p>
</c:if>
</body>
</html>

这将产生以下结果:


My salary is: 4000
 
最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务