Blogger Information
Blog 6
fans 0
comment 0
visits 4876
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
jQuery 第一节课 - jQuery引入和入口函数,jQuery选择器知识点,jQuery事件,例子 : jQuery倒计时-2019-4-1
Paul的博客
Original
711 people have browsed it

作业-2019-4-1.jpg

知识扩展

讲解$(function(){});

$是jQuery别名。如$()也可jQuery()这样写,相当于页面初始化函数,当页面加载完毕,会执行jQuery()。

希望在做所有事情之前,JQuery操作DOM文档。必须确保在DOM载入完毕后开始执行,应该用ready事件做处理HTML文档的开始

$(document).ready(function(){});

类似于js的window.onload事件函数,但是ready事件要先于onload事件执行

window.onload = function(){};

为方便开发,jQuery简化这样的方法,直接用$()表示

JQuery的ready事件不等于Js的load:

执行时机不同:load需要等外部图片和视频等全部加载才执行。ready是DOM绘制完毕后执行,先与外部文件

用法不同:load只可写一次,ready可以多次




Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments