0

在我的应用程序中,我有一个 jsp,其中包含 3 个 jsp 文件。在这 3 个 jsp 中,我有一个带按钮的 jsp。按下按钮后,我想更改内容accordion2.jsp。我所做的是一旦按下任何按钮,我就会调用一个 servlet,这个 servlet 执行逻辑部分我使用的还有 html 的摘录。

<script type="text/javascript">
    $(document).ready(function() {
      // select all the links with class="lnk", when one of them is clicked, get its "href" value
      // load the content from that URL and place it into the tag with id="content"
      $('input.button').click(function() {

        var url = $(this).attr('src');
        alert(url);
        var status= $(this).attr('value');
          alert(status);
          alert(url+"?name="+status);
        $('.accordion2').detach();
        $('.accordion2').load(url+"?name="+status);
        alert("after load");
        return false;
      });
    });
    </script>



    </head>

    <body class="bodybg" >
    <div class="wrapwidth">
        <!--put header here -->
        <%@include file="header.jsp" %>
        <div class="mainbpdy">
            <!--put vetinav here-->
            <%@include file="vetinav.jsp" %>

            <div class="sroolable">

            <%@include file="accordion2.jsp" %>

            </div>
        </div>
        <div class="footer">footer</div>

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

1 回答 1

0

如果顶层 JSP 生成了整个页面,则应该调用它再次生成页面。

于 2012-04-17T08:24:35.460 回答