7

在我的应用程序发布提交后,如何仅刷新页面的一部分(“DIV”)?我将 JQuery 与插件 ajaxForm 一起使用。我用“divResult”设置了我的目标,但是页面在“divResult”中重复了你的内容。资料来源:

   <script>      
       $(document).ready(function() {      
           $("#formSearch").submit(function() {      
                var options = {    
                  target:"#divResult",
                  url: "http://localhost:8081/sniper/estabelecimento/pesquisar.action"  
                }      
               $(this).ajaxSubmit(options);      
               return false;      
          });      
      })
   </script>

 <s:form id="formSearch" theme="simple" class="formulario" method="POST">      
 ...      

 <input id="btTest" type="submit" value="test" >      

 ...      

                 <div id="divResult" class="quadro_conteudo" >      
                     <table id="tableResult" class="tablesorter">      
                         <thead>      
                             <tr>      
                                 <th style="text-align:center;">      
                                     <input id="checkTodos" type="checkbox" title="Marca/Desmarcar todos" />      
                                 </th>      
                                 <th scope="col">Name</th>      
                                 <th scope="col">Phone</th>      
                             </tr>      
                         </thead>      

                         <tbody>      
                             <s:iterator value="entityList">      
                                 <s:url id="urlEditar" action="editar"><s:param name="id" value="%{id}"/></s:url>      
                                <tr>      
                                    <td style="text-align:center;"><s:checkbox id="checkSelecionado" name="selecionados" theme="simple" fieldValue="%{id}"></s:checkbox></td>      
                                    <td> <s:a href="%{urlEditar}"><s:property value="name"/></s:a></td>      
                                    <td> <s:a href="%{urlEditar}"><s:property value="phone"/></s:a></td>      
                                </tr>      
                             </s:iterator>      
                         </tbody>      
                     </table>      

                     <div id="pager" class="pager">      
                         <form>      
                             <img src="<%=request.getContextPath()%>/plugins/jquery/tablesorter/addons/pager/icons/first.png" class="first"/>      
                             <img src="<%=request.getContextPath()%>/plugins/jquery/tablesorter/addons/pager/icons/prev.png" class="prev"/>      
                             <input type="text" class="pagedisplay"/>      
                             <img src="<%=request.getContextPath()%>/plugins/jquery/tablesorter/addons/pager/icons/next.png" class="next"/>      
                             <img src="<%=request.getContextPath()%>/plugins/jquery/tablesorter/addons/pager/icons/last.png" class="last"/>      
                             <select class="pagesize">      
                                 <option selected="selected" value="10">10</option>      
                                 <option value="20">20</option>      
                                 <option value="30">30</option>      
                                 <option value="40">40</option>      
                                 <option value="<s:property value="totalRegistros"/>">todos</option>      
                             </select>      
                             <s:label>Total de registros: <s:property value="totalRegistros"/></s:label>      
                         </form>      
                     </div>      
                     <br/>      
             </div> 

谢谢。

4

5 回答 5

8

要使用 jquery 解决这个问题,我会试试这个;

$(document).ready(function() {
    $("#formSearch").submit(function() {
        var options = {
            /* target:"#divResult", */

            success: function(html) {
                $("#divResult").replaceWith($('#divResult', $(html)));
            },

            url: "http://localhost:8081/sniper/estabelecimento/pesquisar.action"
        }

        $(this).ajaxSubmit(options);
        return false;
    });
});

或者,您可以让服务器只返回需要插入到 div 中的 html,而不是 html 文档的其余部分。

我不太了解 TableSorter 插件,但我知道每次重新加载元素时都需要重新初始化 TableSorter 插件。所以在你的成功函数中添加一行以你的表为目标,例如

success: function(html) {
    var resultDiv = $("#divResult").replaceWith($('#divResult',     $(html)));

    $('table.tablesorter', resultDiv).TableSorter();
}
于 2009-05-15T14:32:37.530 回答
3

您的问题出在服务器端:您必须创建一个仅返回所需 div 的页面,然后更改“url”以匹配它。

目前,您正在使用 AJAX 调用加载整个页面,这就是它返回整个页面的原因。

于 2009-05-15T14:31:02.447 回答
0

您可以将大多数普通的 jquery ajax 函数参数与 ajaxSubmit 一起使用。只需传入一个成功函数。

$('#formSearch').ajaxSubmit({success: function(){ /* refresh div */ }); 

有关更详细的示例,请参见此处。

于 2009-05-15T14:11:04.587 回答
0

使用 jQuery,有时当我执行 .get ajax 调用来更新数据库时,我会在成功回调函数中使用简单的 jQuery .load语句重新加载/刷新页面的另一部分,以替换 div 的内容。

$("#div_to_refresh").load("url_of_current_page.html #div_to_refresh")

我想指出,这不是重新加载一小部分数据的最有效方法,因此我只会在低流量的 Web 应用程序上使用它,但它很容易编码。

于 2014-08-04T23:54:27.987 回答
0

如果您只想div使用与您的帖子结果覆盖之前相同的静态内容刷新您的内容,您可以尝试以下操作:

$("#Container").html($("#Container").html());

当然要注意内部 HTML 没有改变,或者,您可以将内部 HTML 存储在document.ready()函数的变量中,然后在需要时加载它。不好意思,写的太仓促了。

于 2010-04-16T21:40:43.370 回答