gpt4 book ai didi

Flash 加载两次解决方法?

转载 作者:行者123 更新时间:2023-12-04 12:38:40 24 4
gpt4 key购买 nike

在调查我的网站加载缓慢的报告问题时,我遇到了一个问题,我注意到(通过 Firebug )我的 Flash 文件加载了两次。

经过一番调查,我找到了 firefox bug结合 SWFObject 2.0 的使用。

现在,我在线程上注意到有人提到您可以通过以下方式解决此问题:

FYI, if you're a webpage developer then an easy workaround to get your page working with FF3 is to delay accessing any plugins until after your page has fully loaded. An easy way to do this is to schedule your plugin scripting code to run after all pending browser events using window.setTimeout with a timeout of zero.



老实说,我不知道他们在说什么,我希望有人能给我一个有效的代码示例。

你知道有什么方法可以使这项工作以及代码是什么样的吗?任何帮助将不胜感激!

最佳答案

<script>
function loadswf()
{
swfobject.registerObject("myobj", "9.0.0");
}
function init()
{
window.setTimeout("loadswf()", 0);
}
</script>
<body onload="init()">

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="778" height="198" id="myobj">
<param name="movie" value="style.swf">
<param NAME=FlashVars VALUE="url={{stylelist}}">
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="style.swf" width="778" height="198">
<param name="flashvars" value="url={{stylelist}}">
<!--<![endif]-->

<a href="http://www.adobe.com/go/getflashplayer">
<img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
</a>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>

关于Flash 加载两次解决方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/499949/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com