1

我正在使用此功能将内容从另一个页面加载到我的<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' 而不是从外部页面加载新内容,这可能吗?

4

2 回答 2

3
<div id="hiddenDiv"></div>  
<div id="Container"></div>  

代码:

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

$("#refresh").bind("click", function() { 
    $("#Container").html($('#hiddenDiv').html())
});
于 2012-05-16T11:54:05.723 回答
0
$("#refresh").bind("click", function() {
   $("#Container").load("Image_rotate.html", function(response, status, xh) {
      $(this).html(response);  // if response is html
   })    
});
于 2012-05-16T12:03:09.703 回答