ie浏览器中,右击页面,在选择 属性,在属性中复制出当前的 url:找到其中的参数。
/xx.do?method=xxe&listxx=listExchangeSendPending&_resourceCode=xxx
这里取 _resourceCode
定义:
<c:set var="isResource" value="${param._resourceCode==null||param._resourceCode==''}" />
用法:
<td width="80%"
<c:if test="${XXXUtil.getStyle()==2 && isResource}"> style="display: none" </c:if> >
<div id="divId"></div>
</td>
c:set 标签实例 <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <html> <head> <title>c:set 标签实例</title> </head> <body> <c:set var="age" scope="session" value="${2000*2}"/> <c:out value="${age}"/> </body> </html>