如何使用ajax刷新刷新div?

时间:2014-03-18 03:23:52

标签: jquery html css ajax jsp

我正在开发spring mvc controller项目,我将数据从控制器传递给jsp。我的jsp页面有水平标签设计,点击每个标签后,我正在显示表格。

目前我的设计中只有两个标签。点击TEST1标签后,它会显示Table1,但如果点击TEST2标签,则会显示另一个包含不同列和数据Table2的表格,并且工作正常

这是我的jsfiddle

这是我的test4.jsp设计 -

<div id='headerDivDash'>
    <h1 id='topHeaderDash'>
        some_image
    </h1>
</div>

<ul id="tabs">
    <li><a href="#" name="tab1">TEST1</a></li>
    <li><a href="#" name="tab2">TEST2</a></li>
</ul>

<div id="content"> 
    <div id="tab1">
        <h2>Test 1</h2>
        <div class="container">
            <c:forEach var="e" items="${testing.machines}">
                <div class="component">
                    <h3>
                        For
                        <c:out value="${e.key}" />
                    </h3>
                    <table class="overflow-y">
                        <thead>
                            <tr>
                                <th>First Name</th>
                                <th>Last Name</th>
                                <th>Address</th>
                                <th>Email</th>
                            </tr>
                        </thead>
                        <tbody>
                            <c:forEach var="m" items="${e.value}">
                                <tr>
                                    <th>${m.fName}</th>
                                    <td class="color-changer">${m.lName}</td>
                                    <td>${m.address}</td>
                                    <td>${m.email}</td>
                                </tr>
                            </c:forEach>
                        </tbody>
                    </table>
                </div>
            </c:forEach>
        </div>

    </div>
    <div id="tab2">
            <h2>Test 2</h2>

        <div class="container">
            <c:forEach var="e" items="${testing.machines}">
                <div class="component">
                    <h3>
                        For
                        <c:out value="${e.key}" />
                    </h3>
                    <table class="overflow-y">
                        <thead>
                            <tr>
                                <th>First Name</th>
                                <th>Last Name</th>
                                <th>Address</th>
                                <th>Email</th>
                            </tr>
                        </thead>
                        <tbody>
                            <c:forEach var="m" items="${e.value}">
                                <tr>
                                    <th>${m.fName}</th>
                                    <td class="color-changer">${m.lName}</td>
                                    <td>${m.address}</td>
                                    <td>${m.email}</td>
                                </tr>
                            </c:forEach>
                        </tbody>
                    </table>
                </div>
            </c:forEach>
        </div> 
    </div>
</div>
<div class="footer">&copy Some value</div>

我将数据从控制器传递到jsp页面。现在我想做的是 -

  • 我想使用AJAX刷新每30秒刷新两个tab1 divtab2 div标签。
  • 此外,如果我在TEST1标签上,然后进行了刷新,那么它应该在TEST1标签上,但假设我在TEST2标签上,然后是正在刷新,然后它应该在TEST2标签上。

下面是我想出的tab1刷新的jquery,不知道我怎样才能将它用于tab2,但不知何故刷新之后,我仍然看到旧数据并且它没有显示刷新后的最新数据。

$(document).ready(function(){
    // Create overlay and append to body:
    $('<div id="overlay"/>').css({
        position: 'fixed',
        top: 0,
        left: 0,
        width: '100%',
        height: $(window).height() + 'px',
        opacity:0.4, 
        background: 'lightgray url(http://bradsknutson.com/wp-content/uploads/2013/04/page-loader.gif) no-repeat center'
    }).hide().appendTo('body');

    // Execute refresh with interval:
    setInterval(refresh, 30 * 1000);
});

//Create a refresh function:
function refresh(){
    // SHOW overlay
    $('#overlay').show();
    // Retrieve data:
    $.ajax({
        url: 'test4.jsp',
        type: 'GET',
        success: function(data){
            var content =  $($.parseHTML(data)).filter("#tab1");
            //Replace content inside the div
            $('#tab1').replaceWith(content); # this is not updating my tab div with latest data
            // HIDE the overlay:
            $('#overlay').hide();
        }
    });
}

我无法看到我的tab1 div正在刷新。我可以看到刷新图像显示但不知何故tab1始终保持相同的旧数据,我看到第一次击中网址。我的jquery有什么问题吗?

此外,我注意到一件非常奇怪的事情,如果我删除content div and tab1 div并刷新container div,那么我可以在刷新后看到我的更新数据并且工作正常但是如果我添加{ {1}}并尝试刷新content and tab1 div,然后根本不起作用。所以有些事情是肯定的..

我怀疑这种情况正在发生,因为我的CSS问题,我想这是在jsfiddle中显示的。

有人可以帮我吗?

1 个答案:

答案 0 :(得分:1)

首先,当你试图获取test4.html时,它在ajax上给出404错误,所以我使用test(jsfiddle默认ajax模型)。我可以在tab1上看到更新,关于tab2,如果你更换&#34;#tab1&#34;在ajax成功它不会更新tab2内容。

第二个donot使用replaceWith()这将替换完整元素,所以下次没有div元素id =&#34; tab1&#34; ..而不是使用它..

        if( $("#tabs li:first").attr("id") ==="current"){
        $('#tab1').html("dummy content 1");
        }
        else { $('#tab2').html("dummy content 2"); } 

Fiddle DEMO