[求助][讨论]自定义标签什么时候开始执行?
现在我还搞不清楚自定义标签什么时候去执行,是怎样一个流程。首先从数据库中读取数据并放在一个list中,转到以下页面,是不是碰到自定义标签后才开始执行标签处理类?
我在线等着,急啊?
这是树形菜单要显示页面
<tr>
<td width="45%" height="100%" valign="top" nowrap="nowrap">
<ul id="containerul">
<c:choose>
<c:when test="${not empty all}">
<li>
<ul>
<!-- 自定义标签 -->
<r:yame list="${all}"/>
</ul>
</li>
</c:when>
<c:otherwise>
<center>
<h1>
<font></font>
</h1>
</center>
</c:otherwise>
</c:choose>
</ul>
</td>
</tr>
<td width="45%" height="100%" valign="top" nowrap="nowrap">
<ul id="containerul">
<c:choose>
<c:when test="${not empty all}">
<li>
<ul>
<!-- 自定义标签 -->
<r:yame list="${all}"/>
</ul>
</li>
</c:when>
<c:otherwise>
<center>
<h1>
<font></font>
</h1>
</center>
</c:otherwise>
</c:choose>
</ul>
</td>
</tr>