基于jstl 标签的使用介绍

导入Jstl标签库

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

需要导入jstl.jar和standard.jar

c:forEach --> 迭代标签迭代List或Map


${person.name }

对map.entrySet()返回的set集合进行迭代
${entry.key } : ${entry.value }


${num }




c:if --> 判断标签
result"> user存在的话result就为true
欢迎您:${user.username}

${result }

c:out

c:set


改变data的值;


${map.propertyname }


${p.name }

c:catch


<%
int x = 1 / 0;
%>

${ex.message }

c:forTokens --> 分割标签


${ss }

data1={"a,b,c,d"}

c:url --> 生成URL




hreftext

你可能感兴趣的:(基于jstl 标签的使用介绍)