PHP:点击<a> tag by corresponding DIV id=&#34;&#34; in ajax?</a>加载任何div内容

时间:2013-11-14 05:49:02

标签: php ajax html load

我开发了一个SLIDING页面网站,其中只有一个索引页面和4-5个不同的DIV部分,由DIV ID区分,这里是链接:http://gosick.tk/
名称:08093103002 传递:mak

但加载需要相当长的时间,因为整个网站只有1页,整页实际上是9200 PX;

现在我想在我一次单击菜单时通过AJAX加载每个DIVISION的id =“” 请给我任何解决方案,我可以在表格行动紧急时加快我的内容负担

2 个答案:

答案 0 :(得分:0)

“现在我想通过AJAX加载每个DIVISION”

$.ajax({
    url: 'test.html',
    dataType: 'html',
    success: function(html) {
        var div = $('#loadDivId', $(html)).addClass('classname');
        $('#wheretoloadId').html(div);
    }
    });

编辑:仅当您的div是ajax响应的一部分时才有效吗?

答案 1 :(得分:0)

这将打开div内容

中锚标记的链接
 <script> 
  $(document).ready(function() {
   $('a').each(function(){ 
   $(this).on("click",function(e) {

   console.log(e);
  e.preventDefault();
   $('#content').load($(this).attr('href'));
   });
   });
   });
   </script>