jQuery初入

2018-12-01  本文已影响1人  槿丶

what is jQuery?

jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers. With a combination of versatility and extensibility, jQuery has changed the way that millions of people write JavaScrip

jQuery是一个快速、小巧且功能丰富的JavaScript库。它使HTML文档的遍历和操作、事件处理、动画和Ajax等操作变得更加简单,并提供了一个易于使用的API,可以跨多种浏览器工作。jQuery集多功能性和可扩展性于一身,改变了数百万人编写JavaScrip的方式

什么是javascript库

把一些常用的方法写到一个单独的js文件,使用得当时候直接引用这个js文件就可以了

jQuery版本

官网下载地址https://jquery.com/。目前版本分为1.x,2.x,3.x

jQuery类型

引入jquery.js时:其实是向全局·作用域中,添加了一个新的类型---jQuery

入口函数

$(document).read(function(){
    
})

//简写
$(function(){
    
})

//使用jquery三个步骤
/*
    1.引入jquery
    2.入口函数
    3.功能实现
*/
上一篇下一篇

猜你喜欢

热点阅读