为啥页面加载多个iframe和div运行速度超慢?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为啥页面加载多个iframe和div运行速度超慢?相关的知识,希望对你有一定的参考价值。
一个页面里加载多个层,每个层里还有一个iframe,为什么静态页面的远行速度都超级慢?具体代码如下:
<div id="name" class="divWin">
<div class="title">
<div class="left iconNote">加载层的标题</div>
<div id="btnClose" class="right" style=" cursor:pointer">返回>> </div>
</div>
<div class="height800px" >
<iframe id="note" src="iframe.html" width="100%" height="600" frameborder="0" allowTransparency="true" scrolling="no"></iframe>
</div>
</div>
<SCRIPT LANGUAGE="javascript">
$("#btnOpen").click(function()
$("#name")
.animate(
right: "0"
,duration:1000,queue:true)
);
$("#btnClose").click(function()
$("#name")
.animate(
right: "-100%"
,duration:1000,queue:true)
);
</SCRIPT>
也就是同一个页面中调用了有7、8个,结果不管在IE6还是IE8\9中运行,速度都是超级的慢!
以上是关于为啥页面加载多个iframe和div运行速度超慢?的主要内容,如果未能解决你的问题,请参考以下文章