<c:if>标签的用途与在一般程序中用的if语句一样。它的使用语法格式为:
<c:if test="testCondition" [var="varName"]
[scope="{page|request|session|application}"]>
......程序内容
</c:if>
下面就是一个<c:if>使用的例子,实现代码如下:
<%@ page language="java" contentType="text/html; charset=GB18030"
pageEncoding="GB18030"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<!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=GB18030">
<title>Insert title here</title>
</head>
<body>
<c:if test="${param.name=='admin'}" var="condition" scope="page">
欢迎您${param.name}登录本系统
</c:if>
<br/>
程序执行结果为: ${condition}
</body>
</html>
c:if标签
最新推荐文章于 2025-09-18 09:35:57 发布
本文介绍了JSP中<c:if>标签的基本用法及示例,展示了如何根据条件显示页面内容。通过具体代码实例,读者可以了解如何设置条件表达式,并掌握<c:if>标签的属性如test、var和scope等。
973

被折叠的 条评论
为什么被折叠?



