01.选择器
02.样式和属性
03.相互转化
04.文档处理
05.过滤
06.查找
07.添加事件
08.事件其他
09.获取下标
10.动画
01.选择器
1、选择器
基本
:first :last :even :odd :not :eq()
内容
contains 内容包含某某某的节点
has 写一个选择器,
$('li:has(a)') li里面有a的li
属性
input[name] 有属性name的input
input[name=user] name属性等于user的input
input[name!=user] name属性不等于user的input
// 有属性name的input
// $('input[name]').css('backgroundColor', 'cyan')
// 属性name值为user的input
// $('input[name=user]').css('backgroundColor', 'cyan')
// 属性name值不为user的input
// $('input[name!=user]').css('backgroundColor', 'cyan')
// 属性name值以user开头的input
// $('input[name^=user]').css('backgroundColor', 'cyan')
// 属性name值以user结束的input
// $('input[name$=user]').css('backgroundColor', 'cyan')
子元素
:first-child
:last-child
:nth-child
// 找到li标签,li是第一个儿子节点的li标签
// $('li:first-child').css('backgroundColor', 'cyan')
// 找到li标签,li是最后一个儿子节点的li标签
// $('li:last-child').css('backgroundColor', 'cyan')
// 找li标签,找指定下标的li标签,这个下标是儿子节点里面的第几个
// $('li:nth-child(1)').css('backgroundColor', 'cyan')
- 黄晓明
- 关晓彤
- 李小龙
- 李小璐
- 高晓松
- 陈妍希
- 苍老师
- 小泽玛利亚
- 波多野结衣
- 大桥未久
- 泷泽萝拉
那些年我们一起追过的女孩