<div class = "a">
<div class = "a b">
text
</div>
</div>
<script>
alert($(".a").html());
alert($(".a b").html());
</script>
我必须将一个脚本添加到我没写过的HTML页面中,在这个脚本中我需要选择一个名称包含两个以空格分隔的单词的类。普通选择器不起作用。我如何选择它?
答案 0 :(得分:4)
以下任何一项都有效:
alert($(".a").html()); // select elements with class 'a'
alert($(".b").html()); // select elements with class 'b'
alert($(".a.b").html()); // select elements with BOTH classes 'a' AND 'b'
答案 1 :(得分:0)
试试这个
alert($(".a.b").html());