zoukankan
html css js c++ java
选择器
#id 用于搜索的,通过元素的 id 属性中给定的值
element 一个用于搜索的元素。指向 DOM 节点的标签名。
.class 一个用以搜索的类。一个元素可以有多个类,只要有一个符合就能被匹配到。
* 找到每一个元素
selector1,selector2,selectorN 你可以指定任意多个选择器,并将匹配到的元素合并到一个结果内。
层级
ancestor descendant
parent > child
prev + next
prev ~ siblings
基本
:first
:not(selector)
:even
:odd
:eq(index)
:gt(index)
:lang
1.9+
:last
:lt(index)
:header
:animated
:focus
:root
1.9+
:target
1.9+
内容
:contains(text)
:empty
:has(selector)
:parent
可见性
:hidden
:visible
属性
[attribute]
[attribute=value]
[attribute!=value]
[attribute^=value]
[attribute$=value]
[attribute*=value]
[attrSel1][attrSel2][attrSelN]
子元素
:first-child
:first-of-type
1.9+
:last-child
:last-of-type
1.9+
:nth-child
:nth-last-child()
1.9+
:nth-last-of-type()
1.9+
:nth-of-type()
1.9+
:only-child
:only-of-type
1.9+
表单
:input
:text
:password
:radio
:checkbox
:submit
:image
:reset
:button
:file
:hidden
表单对象属性
:enabled
:disabled
:checked
:selected
查看全文
相关阅读:
2016/9/18结对编程之需求分析与原型设计。
K米评测
软件工程的实践项目课程的自我目标
url学习1
调研构建之法指导下的作品
初次尝试对接
第二次结对编程作业——毕业导师智能匹配
uml
Qt中采用cairo将图片导出至PDF
SQL删除重复的记录(只保留一条)
原文地址:https://www.cnblogs.com/wantnewlive/p/9950945.html
最新文章
#progma详解
C语言中的位操作(7)不用选择分支按条件设置指定值
C语言中的位操作(8)根据指定掩码选择两数之一
Linux 一句精彩的回答【转】
简单samba 搭建
【转】Linux单人维护密码
Linux下的时间详解【转】
yum安装
REAL6 本地yum源配置
Linux 字符界面分辨率设定
热门文章
REHL6.0 Enterprise 中设定Telnet
linux下文件的读写操作(openreadwrite)
VMware 拷贝后网卡找不到问题
To Do 注释的运用
覆盖虚方法
理解 Delphi 的类(十一) 深入类中的方法[1] 虚方法与动态方法
实验四生产者和消费者 12
实验二进程调度模拟程序 12
实验一 熟练使用DOS操作命令 12
实验三进程调度模拟程序2.0 12
Copyright © 2011-2022 走看看