jQuery 介绍

建议学习时长: 15分钟
学习方式:了解

学习目标

  • 了解 jQuery。
  • 知道用 jQuery 能带来的好处。

详细介绍

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 JavaScript.

翻译:

jQuery 是一个的性能卓越,轻量级和功能强大的 JavaScript 库。用 jQuery 对 HTML 的操作,事件处理,动画,Ajax 很容易,并且兼容多个浏览器。jQuery 的灵活性和拓展性,已经影响了数以万计的人写 JavaScript 的方式。

简单来说,jQuery 封装了浏览器原生的操作 DOM 的一些方法;ajax;动画 等。使用 jQuery 的好处主要是:

  • 调用 jQuey 的方法基本不需要考虑浏览器兼容性问题。
  • 和使用浏览器原生 API 比,可以少写很多代码。这和 jQuery API 的设计有关,并且 jQuery的 API 比浏览器的多不少。

推荐阅读

  • You Might Not Need jQuery
  • 前端JQuery系列

你可能感兴趣的:(jQuery 介绍)