jquery 的主要知识

Posted bbs1234

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery 的主要知识相关的知识,希望对你有一定的参考价值。

获取jquery对象:
$("选择器") jQuery("选择器");
jquery对象>>dom对象
方式1:
jquery对象.get(index);

方式2:
jquery对象[index]
dom对象>>jquery对象
$(dom对象)

页面载入
$(function(){})

派发事件
jquery对象.事件(function(){...});

选择器:
#id值 .class值 标签名 [属性] [属性=‘值‘]
a b:后代 a>b:孩子 a+b:大弟弟 a~b:所有弟弟
:first :last :odd :even :eq|gt|lt(index)
:hidden
:checked :selected
属性和css:
prop|attr
css

文本 标签体
val()
html() text()

文档处理
内部插入
append prepend
外部插入
after before
删除
remove
效果:
隐藏|显示
show() hide()
淡入淡出
fadeIn() fadeOut()
滑入滑出
slideDown() slideUp()

遍历
jquery对象.each(function(){
});

 







































以上是关于jquery 的主要知识的主要内容,如果未能解决你的问题,请参考以下文章

前端知识之jQuery

jquery基础知识学习笔记

jquery基础知识学习笔记

(JavaScript+Jquery+Ajax)知识点整理♥♥

(JavaScript+Jquery+Ajax)知识点整理♥♥

jQuery复习节点知识(1查看(获取)和设置属性)