English 中文(简体)
如何强制浏览器使用HTML加载页面的所有组件?关闭
原标题:How to enforce a browser to load all the components of the page using HTML? [closed]
  • 时间:2012-05-26 11:22:19
  •  标签:
  • html
Closed. This question needs details or clarity. It is not currently accepting answers.

想改进这个问题吗 通过编辑此文章添加详细信息并澄清问题。

Closed 10 years ago.

我用HTML制作了一个页面,其中有一些.jpg文件和一些.swf文件,当有人用慢速网络连接打开它时,其中一些文件不会被浏览器加载,即使加载需要几个小时,也必须加载。这个问题有什么解决办法吗?是否有任何代码可用于HTML或任何其他语言(优先为HTML)?

最佳回答

这不是您可以从服务器端配置的内容(尤其是不能从HTML)。

这是由用户浏览器上的超时设置决定的。如果他们愿意的话,他们将不得不自己改变环境。

问题回答

对于图像,您可以很容易地使用javascript来请求所有资产,一旦加载了所有资产,就会显示页面的其余部分。您可以使用CSS默认隐藏它,然后让javascript在加载时再次显示它。

这里有一个这样做的例子:http://jsfiddle.net/HdSSL/一

然而,预加载flash嵌入是另一回事。您可以通过手动将每个嵌入包封装在容器swf中并监控子电影的加载状态来实现这一点,但这相当复杂,可能会破坏一些flash电影。





相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签