MouseOver标题问题

时间:2012-02-20 20:08:48

标签: html jstl

大家好我想把<td>单元格的所有内容放到mouseOver中。我正在做一个forEach用元素填充单元格。一些单元格中包含一系列元素。我希望单元格中的内容也是MouseOver上出现的内容。我不知道如何格式化title = to accomodate。

<table align="center" class="data_extract vert_scroll_table" >
    <tr>
        <c:forEach var="heading" items="${results.headings}"> 
            <th class="data_extract">${heading}</th>
        </c:forEach>
    </tr>
    <c:forEach var="row" items="${results.data}">
        <tr>
            <c:forEach var="cell" items="${row}" varStatus="rowStatus">
                <td class="data_extract">
                    <c:choose>
                        <c:when test="${results.types[rowStatus.index].array}">
                            <c:forEach var="elem" items="${cell}" varStatus="cellStatus">
                                <span class="mouseover_text" title="${elem},&nbsp;">${elem}<c:if test="${!cellStatus.last}">,&nbsp;</c:if></span>
                            </c:forEach>
                        </c:when>
                        <c:otherwise>
                            ${cell}
                        </c:otherwise>
                    </c:choose>
                </td>
            </c:forEach>
        </tr>
    </c:forEach>
</table>

我基本上想在循环完成之后:

<c:when test="${results.types[rowStatus.index].array}">
    <c:forEach var="elem" items="${cell}" varStatus="cellStatus">
        ${elem}<c:if test="${!cellStatus.last}">,&nbsp;</c:if>
    </c:forEach>

将结果放在标题中:

<span class="mouseover_text" title=  </span>

1 个答案:

答案 0 :(得分:0)

如果我理解您的问题,则您的span标记中的标题标记无法正确生成。

查看以下代码是否适合您的问题。如果没有,请更清楚地解释一下。

 <c:forEach var="elem" items="${cell}" varStatus="cellStatus">
    <c:choose>
        <c:when test="${cellStatus.count ==1}>
            <c:set var="temp" value="${elem}"/>
        </c:when>
        <c:otherwise>
            <c:set var="temp" value="${temp}, ${elem}"/>
        </c:otherwise>
    </c:choose>
    <span class="mouseover_text" title="${temp}">${elem}<c:if test="${!cellStatus.last}">,&nbsp;</c:if></span>
</c:forEach>