search
HomeWeb Front-endJS TutorialPreload js code of css or javascript_javascript tips

There are generally two common ways to preload files: xhr and dynamically inserting nodes. Dynamically inserting nodes is the simplest and most widespread asynchronous loading method (such as yui's Get module). Then files loaded using the dynamically inserted node method will be executed immediately after loading. On the one hand, the execution of javascript will occupy the browser's js execution. The process, on the other hand, may also change the page structure, and the execution of css is more likely to change the entire page. Although the xhr method will not execute scripts, due to the restrictions of the same domain, and the static files of the website are now deployed on the CDN server, how to preload css js files has become a bit mysterious.

Stoyan Stefanov concisely explains a way to load a file without letting it execute. The original text can be found at http://www.phpied.com/preload-cssjavascript-without-execution/

The specific method is to use new Image().src in IE to preload the file , while other browsers use dynamically inserted tags to complete loading.
Part of the code is as follows

Copy code The code is as follows:

window.onload = function () {

var i = 0,
max = 0,
o = null,

// list of stuff to preload
preload = [
'http://tools.w3clubs.com/pagr2/.sleep.expires.png',
'http://tools.w3clubs.com/pagr2/ .sleep.expires.js',
'http://tools.w3clubs.com/pagr2/.sleep.expires .css'
],
isIE = navigator.appName.indexOf('Microsoft') === 0;

for (i = 0, max = preload.length; i
if (isIE) {
new Image().src = preload[i];
continue;
}
o = document.createElement( 'object');
o.data = preload[i];

// IE stuff, otherwise 0x0 is OK
//o.width = 1;
//o. height = 1;
//o.style.visibility = "hidden";
//o.type = "text/plain"; // IE
o.width = 0;
o .height = 0;

// only FF appends to the head
// all others require body
document.body.appendChild(o);
}
};

Demo is availablehttp://phpied.com/files/object-prefetch/page1.php?id=1

A few notes:
1. The reason why new Image().src cannot be used in ff is because ff implements a separate cache for images. At the same time, safari and chrome don't seem to be cached.

2. The dynamically inserted object tag needs to be inserted into the non-head part to trigger loading.

3. ie7 ie8 can also use dynamic objects to load files through some code (mentioned in the code comments). However, the author found that object usually consumes a lot of money, so...


Through his own experiments, he found that it is quite good. Students in need may wish to give it a try.

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Vue中如何处理图片的缓存和预加载?Vue中如何处理图片的缓存和预加载?Aug 25, 2023 pm 04:21 PM

Vue中如何处理图片的缓存和预加载?在开发Vue项目时,我们经常需要处理图片的缓存和预加载,以提高网站性能和用户体验。本文将介绍一些Vue中处理图片缓存和预加载的方法,并给出相应的代码示例。一、图片缓存使用图片懒加载(LazyLoading)图片懒加载是一种延迟加载图片的技术,即在页面滚动到图片所在位置时才加载图片。这可以减少首次加载页面时对图片资源的请求

css ul标签怎么去掉圆点css ul标签怎么去掉圆点Apr 25, 2022 pm 05:55 PM

在css中,可用list-style-type属性来去掉ul的圆点标记,语法为“ul{list-style-type:none}”;list-style-type属性可设置列表项标记的类型,当值为“none”可不定义标记,也可去除已有标记。

css与xml的区别是什么css与xml的区别是什么Apr 24, 2022 am 11:21 AM

区别是:css是层叠样式表单,是将样式信息与网页内容分离的一种标记语言,主要用来设计网页的样式,还可以对网页各元素进行格式化;xml是可扩展标记语言,是一种数据存储语言,用于使用简单的标记描述数据,将文档分成许多部件并对这些部件加以标识。

Vue如何实现组件的懒加载和预加载?Vue如何实现组件的懒加载和预加载?Jun 27, 2023 pm 03:24 PM

随着Web应用程序的日益复杂,前端开发人员需要在保证页面加载速度的前提下更好地提供功能和用户体验。这就涉及到Vue组件的懒加载和预加载,它们是优化Vue应用程序性能的重要手段。本文将深入介绍Vue组件的懒加载和预加载的实现方法。一、什么是懒加载懒加载就是当用户需要访问某个组件时才会把该组件的代码加载进来,而不是一开始就把所有组件的代码都加载进来,这样可以减少

css3怎么实现鼠标隐藏效果css3怎么实现鼠标隐藏效果Apr 27, 2022 pm 05:20 PM

在css中,可以利用cursor属性实现鼠标隐藏效果,该属性用于定义鼠标指针放在一个元素边界范围内时所用的光标形状,当属性值设置为none时,就可以实现鼠标隐藏效果,语法为“元素{cursor:none}”。

UniApp实现图片处理与预加载的设计与开发技巧UniApp实现图片处理与预加载的设计与开发技巧Jul 04, 2023 pm 05:45 PM

UniApp实现图片处理与预加载的设计与开发技巧引言:在移动应用开发中,图片处理和预加载是常见的需求。UniApp作为一个跨平台的开发框架,提供了方便快捷的图片处理与预加载功能。本文将介绍UniApp中实现图片处理与预加载的设计和开发技巧,并给出相应的代码示例。一、图片处理的设计与开发缩放图片在UniApp中,要对图片进行缩放,可以使用<uni-ima

rtl在css是什么意思rtl在css是什么意思Apr 24, 2022 am 11:07 AM

在css中,rtl是“right-to-left”的缩写,是从右往左的意思,指的是内联内容从右往左依次排布,是direction属性的一个属性值;该属性规定了文本的方向和书写方向,语法为“元素{direction:rtl}”。

如何使用 Vue 实现图片预加载?如何使用 Vue 实现图片预加载?Jun 25, 2023 am 11:01 AM

在网页开发中,图片预载是一种常见的技术,可以提升用户的体验感。当用户浏览网页时,图片可以提前下载并加载,减少图片加载时的等待时间。在Vue框架中,我们可以通过一些简单的方法来实现图片预载。本文将介绍Vue中的图片预载技术,包括预载的原理、实现的方法和使用注意事项。一、预载的原理首先,我们来了解一下图片预载的原理。传统的图片加载方式是等到图片全部下载完成才显示

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use