我正在使用此功能将其他页面中的内容加载到我的<div>
:
<script>
$(document).ready(function() {
$("#refresh").bind("click", function() {
$("#Container").load("Image_rotate.html")
});
});
</script>
<h2>Looking for</h2>
<div id="Container"></div>
</div><a href="javascript:void(0);" id="refresh">click</a>
但我只是想刷新我的div'Container'并且不从外部页面加载新内容,是否可能?
答案 0 :(得分:3)
<div id="hiddenDiv"></div>
<div id="Container"></div>
<强>代码:强>
$('#hiddenDiv').html($("#Container"));
$("#refresh").bind("click", function() {
$("#Container").html($('#hiddenDiv').html())
});
答案 1 :(得分:0)
$("#refresh").bind("click", function() {
$("#Container").load("Image_rotate.html", function(response, status, xh) {
$(this).html(response); // if response is html
})
});