jquery预加载的几种例子
2021-05-08 14:28
标签:load 插件 pre onload UNC 预加载 前端 start fun 实际编写前端页面时,有时候希望一打开某个页面就加载一些方法。下面是4种预加载方法。 ①页面加载完之前执行,与嵌入的js加载方式一样(写jquery插件的时候使用) ②页面加载后执行。 ③页面加载后执行。 ④页面加载后执行。 jquery预加载的几种例子 标签:load 插件 pre onload UNC 预加载 前端 start fun 原文地址:https://www.cnblogs.com/torchstar/p/12078603.html(function ($) {
alert(‘start‘);
})(jQuery);
$(document).ready(function(){
alert(‘jquery ready‘);
});
$(function(){
alert(‘jquery onload‘);
});
jQuery(function($) {
alert(‘jQuery ready ‘);
});