jQuery核心函数:
简称:jQuery或者$
jQuery库向外暴露的就是$/jQuery。引入jQuery库之后,可以直接使用$符号
核心函数的用法: $(xxx)
jQuery核心对象: $()函数执行返回的是对象
简称:jQuery对象
得到jQuery对象:执行jQuery函数返回的就是jQuery对象
使用jQuery对象:$obj.xxx()
- //jQuery核心函数
- console.log(jQuery,typeof $);
- console.log($===jQuery);//true
- //jQuery核心对象
- console.log($() instanceof Object);//true