标签:利用 cti 新建 官网 生成 功能实现 为什么 下载 write
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的方式
把一些常用的方法写到一个单独的js文件,使用得当时候直接引用这个js文件就可以了
官网下载地址https://jquery.com/。目前版本分为1.x,2.x,3.x
引入jquery.js时:其实是向全局·作用域中,添加了一个新的类型---jQuery
$(document).read(function(){
})
//简写
$(function(){
})
//使用jquery三个步骤
/*
1.引入jquery
2.入口函数
3.功能实现
*/
标签:利用 cti 新建 官网 生成 功能实现 为什么 下载 write
原文地址:https://www.cnblogs.com/lyChengx/p/10048980.html