2016-06-16 |

简述jQuery框架里,除了#id这样的选择器还有哪几

A
B
C
D
答案:
解释:
一、基本选择器
1.#id选择器
2.element选择器
3.class选择器
4.*选择器
5.selector1,selector2,selectorN选择器
二、层级选择器
1.ancestor descendant选择器
2.parent>child选择器
3.prev+next选择器
4.prev ~ siblings选择器
三、过滤选择器
1.基本过滤选择器
(1):first/:last选择器。
(2):not选择器。
(3):even和:odd选择器。
(4):eq:gt、:lt、选择器。
(5):header选择器。
(6):animated选择器。
2.内容过滤选择器
(1):contains选择器。
(2):empty选择器。
(3):has选择器。
(4):parent选择器。
3.可见性过滤选择器
(1):hidden选择器。
(2):visible选择器。
4.属性过滤选择器
(1) [attribute]选择器。
(2)[attribute=value]、[attribute!=value]选择器(此处包含两种)。
(3)[attribute^=value]、[attribute$=value]、[attribute*=value]选择器(此处包含三种)。
(4)[selector][selector2]选择器。
5.子元素过滤选择器
(1):nth-child选择器。
(2):first-child、:last-child选择器(两种)。
(3):only-child选择器。
6.表单对象属性过滤选择器
(1):enabled、:disabled选择器。
(2):checked选择器。
(3):selected选择器。
表单过滤选择器是用于处理html中表单的选择器,其中不仅仅包括经常用到的按钮、文本域、单选框、复选框等,还涉及了很少用到的图片、隐藏域、文件上传等标签。下面将会对这些选择器进行具体介绍。
(1):input选择器。
(2):text、:password选择器。
(3):radio、:checkbox选择器。
(4):submit、:image、:reset、:button、:file选择器。
(5):hidden选择器。
html5面试题
it面试经验

发表评论

    评价:
    验证码: 点击我更换图片
    最新评论