1

この関数を使用して、別のページから my にコンテンツをロードしています<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 に答える