jQuery学习笔记2——温故+知新
jQuery学习笔记2——温故+知新 开始之前:http://docs.jquery.com/ 是jQuery文档的网站, https://jsfiddle.net/是js的在线验证工具。 如果你没有html,CSS,js,jQuery基础,请学习它们先。 Introduction Web pages made withHTML andCSS display static content. They don’t respond to user actions like clicking a mouse or typing a key. JavaScript andjQuery are used to make web pages interactive. JavaScript is a programming language used to create web pages that change in response to user actions. jQuery is a collection of prewritten JavaScript code that lets us easily create interactive effects on our site. 1. 介绍一个实际的例子,可以在https://jsfiddle.net/上得到验证。 这个例子是侧面菜单的点击滑入效果: 1. <html> 2. <head> 3. <link href="//maxcdn.
…