jQuery选择器选取第一个子元素
$("p:first")
jQuery选择器选取HTML 中 class="hov_bg hov2" class中带有空格的这类元素
$(".hov_bg.hov2");
该选择器可以筛选出同时拥有class="hov_bg hov2"样式的HTML元素
$(".hov2");
该选择器可以筛选出class="hov2"和class="hov_bg hov2"的元素
例子:
<div class="container">simple</div>
<div class="layer container">complex</div>
<script type="text/javascript">
alert($(".container.layer").html());
</script>
class中带空格不是指一个class,而是指两种class中的任意一种。
下面是详解:
CSS 多类选择器
在上一节中,我们处理了 class 值中包含一个词的情况。在 HTML 中,一个 class 值中可能包含一个词列表,各个词之间用空格分隔。例如,如果希望将一个特定的元素同时标记为重要(important)和警告(warning),就可以写作:
<p class="important warning"> This paragraph is a very important warning. </p>
这两个词的顺序无关紧要,写成 warning important 也可以。
我们假设 class 为 important 的所有元素都是粗体,而 class 为 warning 的所有元素为斜体,class 中同时包含 important 和 warning 的所有元素还有一个银色的背景 。就可以写作:
.important {[font-weight](https://www.baidu.com/s?wd=font-weight&tn=SE_PcZhidaonwhc_ngpagmjz&rsv_dl=gh_pc_zhidao):bold;}
.warning {[font-weight](https://www.baidu.com/s?wd=font-weight&tn=SE_PcZhidaonwhc_ngpagmjz&rsv_dl=gh_pc_zhidao):italic;}
.important.warning {background:silver;}