1. 程式人生 > >如何載入HTML頁面頁面到另一個介面中

如何載入HTML頁面頁面到另一個介面中

<script type="text/javascript">
// 第二種方法載入頁面:jQuery $.ajax
$(document).ready(function(){
  ajaxload('user_dashboard.html')
  function ajaxload(local){
      htmlobj=$.ajax({url:local,async:false});
      $(".contentRight").html(htmlobj.responseText);
  }
  $("#sidebar").find('li:eq(0)').click(function(){
      ajaxload('user_dashboard.html')
   return false;
  });
 
  $("#sidebar").find('li:eq(1)').click(function(){
    ajaxload('user_profile.html')
  return false;
  });
 
});

</script>