当我们必须使用jquery load语句同时创建多个XMLHttpRequest时,如何减少页面加载时间?

时间:2013-08-21 08:03:28

标签: jquery-load php-include

我有一个名为'career_new.php'的模板页面。我想将这个模板用于与CA,Engineering,MBA等不同职业相关的几个页面。为此,我编写了出现在本段下面的代码。此代码执行时没有任何错误并正确显示所有内容,但加载此页面需要花费太多时间。这是我的页面ca.php的代码:

<?php

     include_once 'career_new.php';// to include the main page (template page)

?>

<script type="text/javascript" src="js/jquery-1.7.1.min.js"></script>

<script type="text/javascript" src="changeContent.js"></script>



<script>

    $("#career_content").load("html_ar/ca_ar_1.html");// for main content

    $("#adv1").load("php/add_demo.php");// for advertisement

    $("#slider2").load("php/ca_link1.php");// for left hand side article list

    $("#Div3").load("html_ar/img_gal.html");//for right hand side image gallery

    $("#Div5").load("ph_link2.php"); // for right hand side external article list

    $("#Div7").load("php/ph_link3.php");// for bottom link1

    $("#Div9").load("php/ph_link4.php");// for bottom link2

    $("#Div11").load("php/ph_link5.php");//for bottom link3

</script>

我应该怎么做才能减少页面加载时间?    我正在使用2.0 mbps带宽的互联网连接进行检查,大约需要15秒。加载与4s-6s的标准时间相比过高的页面。 请指导我这方面。

模板页面的大小(包括所有html,css,js和其他图像文件大约为800 KB)

0 个答案:

没有答案