在我的应用程序发布提交后,如何刷新页面的一部分(“DIV”)? 我在插件ajaxForm中使用JQuery。 我用“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>
感谢。
答案 0 :(得分: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();
}
答案 1 :(得分:3)
您的问题出在服务器端:您必须创建一个只返回所需div的页面,然后更改“url”以匹配该页面。
目前您正在使用AJAX调用加载整个页面,这就是它返回整个页面的原因。
答案 2 :(得分:0)
你可以使用大多数普通的jquery ajax函数参数和ajaxSubmit。只需传递一个成功函数。
$('#formSearch').ajaxSubmit({success: function(){ /* refresh div */ });
有关更详细的示例,请参阅here。
答案 3 :(得分:0)
如果您只想在发布结果覆盖之前使用相同的静态内容刷新div
,则可以尝试以下内容:
$("#Container").html($("#Container").html());
当然要小心内部HTML没有改变,或者你可以将innerHTML存储在document.ready()
函数的变量中,然后在需要时加载它。对不起,用匆忙写的。
答案 4 :(得分:0)
使用jQuery,有时当我执行.get ajax调用来更新数据库时,我使用成功回调函数中的简单jQuery .load语句重新加载/刷新页面的另一部分来替换a的内容DIV。
$("#div_to_refresh").load("url_of_current_page.html #div_to_refresh")
我想指出,这不是重新加载一小部分数据的最有效方式,因此我只会在低流量的网络应用中使用它,但编码很简单。