descendant selector的意思|示意

美 / / 英 / /

后代选择器


descendant selector的网络常见释义

选择符 包含(派生)选择符(Descendant Selectors) :选择所有被E1包含的E2。

后代选择器 常用的选择器是 类型选择器、后代选择器(descendant selector),类选择器,ID 选择器。

选择器 类(class)在有时是必须的,但有时给元素(element)指定一个ID然后使用子元素选择器(descendant selector)指向那个目标元素的子元素比为每一个子元素分配一个类(class)的做法要少一些代码。

后代选取器 若是我们只打算替某些元素 (element) 的后代 (descendant) 制定规则 (rule) ,这时可用后代选取器 (descendant selector) 。 HTML 元素的前后代之分,例如

descendant selector相关例句

A descendant selector is represented by a double-slash: //.

后代选择器用双斜线 // 表示。

When using the descendant combinator, an element selector on the right is selected if it falls anywhere between the tags of the element selector on the left.

当使用后代选择符,右边的一个元素选择器是被选择的,不管左边的元素选择器标签有几个。

In this case, the selector is the ancestor element name followed by the descendant element name.

在这种情况下,选择符是祖先元素名后面跟着后代元素名。

The selector in the following rule, which combines descendant and attribute selectors, matches any element that (1) has the "href" attribute set and (2) is inside a P that is itself inside a DIV

下面规则中的选择符结合了派生选择符和属性选择符,它匹配任何元素,如果(1)该元素设置了"href"属性;且(2)包含在一个P元素内,而P元素又包含在一个DIV元素内