繁体   English   中英

在jsp页面中隐藏div标签

[英]hide div tag in jsp page

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!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=ISO-8859-1">
<title>Welcome</title>
<script type="text/javascript">
$(document).ready(function()
        {
            if()==null)
            {

            }
        }
);
</script>
</head>

<center>
    <%@ include file="Head.jsp" %>
</center>
<body>
<div id="tempDiv">
    <h1>Message : ${message}</h1>   
    <h1>Author : ${author}</h1>
</div>  
    <a href='<c:url value="/j_spring_security_logout" />' > Logout</a>
    <div align="center">
        <table class="table1">
            <tr>
                <td align="center" width="800" height="400"><font size="10">
                        Welcome </font></td>
            </tr>
        </table>

    </div>
</body>
</html>

$ message值不存在时如何隐藏div标签。 我想隐藏我的div标签。 在jsp页面。 当用户单击主页时。 我在这里尝试了javascript代码,但没有获得如何在javascript中使用jsp元素的任何答案。 或在我的情况下隐藏div标签有用的任何代码都建议使用。 感谢你....

尝试这个

<c:if test="${empty message}">

</c:if>
<c:if test="${not empty message}">
<div id="tempDiv">
    <h1>Message : ${message}</h1>   
    <h1>Author : ${author}</h1>
</div>  
</c:if>

您需要检查变量是否为空,并取决于html页上的打印内容...希望它能工作

或另一种方式

<c:choose>
    <c:when test="${empty message}">

    </c:when>
    <c:otherwise>
    <div id="tempDiv">
        <h1>Message : ${message}</h1>   
        <h1>Author : ${author}</h1>
    </div>  
    </c:otherwise>
</c:choose>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM