选择器 基础选择器:标签选择器,id选择器,类选择器,通配符选择器 高级选择器:后代选择器,交集选择器,并集选择器 1. 标签选择器: • 优点:可以选中所有的同名标签,设置所有同名标签的公共样式. • 缺点:只能实现全选,不能对局部的标签添加特殊样式. 2. id选择器 ① 通过标签上的 id 属性去选择标签. ② 书写方式:#id 属性值 ③ 选择范围:只能选中一个标签. ④ id 命名规则:必须以字母开头,后面可以有字母.数字.下划线.横线,严格区分大小写.每个 id 属性值必须是唯一…
The jQuery library supports nearly all of the selectors included in CSS specifications 1 through 3, as outlined on the World Wide Web Consortium's site: http://www.w3.org/Style/CSS/specs. This support allows developers to enhance their websites witho…