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