0

我正在根据 URL 测试一个东西。如果 URL 以logout.jsp结尾,则应显示注销消息,如果 URL 以index.jsp结尾,则不应显示该消息。为此,我使用了 document.getElementById("id").hidden = value. 但这不起作用。事实上,该函数没有被调用。我不知道问题是什么。

HTML 片段

<table id="LogoutMessage" onload="urlCheck()">
            <tr>
                <td>
                    <h2>You are successfully logged out !</h2>
                </td>
            </tr>
        </table>

javascript函数

<script type="text/javascript">
    function urlCheck() {
        alert("in the function urlCheck");
        if(document.URL.endsWith() = "logout.jsp")
            document.getElementById("LogoutMessage").hidden = false;
        else if(document.URL.endsWith() = "index.jsp")
            document.getElementById("LogoutMessage").hidden = true;                
    }
</script>

JSP中的整页

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>PhotoArtWork</title>
    <jsp:include page="reusable/stylesheets.html" />
    <script type="text/javascript" src="js/modernizr-1.5.min.js"></script>
</head>
<body>
    <jsp:include page="reusable/header.html" />
    <!-- begin content --><div id="site_content">
        <table id="LogoutMessage" onload="urlCheck()">
            <tr>
                <td>
                    <h2>You are successfully logged out !</h2>
                </td>
            </tr>
        </table>
  <ul class="slideshow">
    <li class="show"><img width="950" height="450" src="images/home_1.jpg" alt="&quot;You can put a caption for your image right here&quot;"></li>
    <li><img width="950" height="450" src="images/home_2.jpg" alt="&quot;You can put a description of the image here if you like, or anything else if you want.&quot;"></li>
    <li><img width="950" height="450" src="images/home_3.jpg" alt="&quot;You can put a description of the image here if you like, or anything else if you want.&quot;"></li>

  </ul>
  </div>
<!-- end content -->
<script type="text/javascript">
    function urlCheck() {
        alert("in the function urlCheck");
        if(document.URL.endsWith() = "logout.jsp")
            document.getElementById("LogoutMessage").hidden = false;
        else if(document.URL.endsWith() = "index.jsp")
            document.getElementById("LogoutMessage").hidden = true;                
    }
</script>
<jsp:include page="reusable/footer.html" />
</body>
</html>

问题是什么 ?

4

4 回答 4

1

没有.hidden属性。它是元素样式的一部分,您将使用可见性。

document.getElementById("LogoutMessage").style.visibility = "hidden"; // or "visible"

如果我不得不猜测,你想使用display而不是hidden.

document.getElementById("LogoutMessage").style.display = "none"; // or "block"
于 2012-04-22T13:41:29.990 回答
1

要调用您的代码,请执行以下操作:

<body onload="urlCheck()">

或者将脚本放在body标签的最后,只包含函数的内部代码。

于 2012-04-22T13:54:12.067 回答
0

Javascript 没有原生的endsWith. 所以你必须先创建一个

String.prototype.endsWith = function(suffix) {
    return this.indexOf(suffix, this.length - suffix.length) !== -1;
};

此外,没有style.hidden property. 请style.display改用

正确的函数urlCheck应该是这样的

function urlCheck() {
    alert("in the function urlCheck");
    if(document.URL.endsWith("logout.jsp"))
        document.getElementById("LogoutMessage").style.display= 'block';
    else if(document.URL.endsWith("index.jsp"))
        document.getElementById("LogoutMessage").style.display= 'none';
}

哦,正如 Mic 所说,请像这样调用函数 onload。

window.onload = function() { urlCheck(); }
于 2012-04-22T13:58:40.810 回答
0

您可以使用 jQuery。包括

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>

并使用

$('#LogoutMessage').hide();

用于隐藏消息和

$('#LogoutMessage').show();

用于显示消息

调用你的函数

$(document).ready(function(){
    urlCheck();
})
function urlCheck() {
    var url = document.URL;
    var urlArr = url.split('/')
    if($.inArray('logout.jsp', urlArr))
    {
        $('#LogoutMessage').show();
    }
    if($.inArray('index.jsp', urlArr))
    {
        $('#LogoutMessage').hide();
    }
}

试试上面的。

于 2012-04-22T15:08:03.773 回答