JavaScript学习笔记-jQuery
It has been 1485 days since the last update, the content of the article may be outdated.
使用jQuery
在<script>
标签内引用src
属性
javascript
<!doctype html> |
$
符号
jQuery
把所有功能全部封装在一个全局变量 jQuery
中,而 $
也是一个合法的变量名,它是变量 jQuery
的别名:
javascript
window.jQuery; // jQuery(selector, context) |
$
本质上就是一个函数,但是函数也是对象,于是$
除了可以直接调用外,也可以有很多其他属性。
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.
Comment