gpt4 book ai didi

jquery - 使用两个标识符按类选择元素

转载 作者:行者123 更新时间:2023-12-01 07:25:03 24 4
gpt4 key购买 nike

<div class = "a">
<div class = "a b">
text
</div>
</div>
<script>
alert($(".a").html());
alert($(".a b").html());
</script>

我必须向一个我没有编写的 HTML 页面添加一个脚本,在这个脚本中我需要选择一个类,该类的名称包含两个由空格分隔的单词。普通的选择器将不起作用。我该如何选择它?

最佳答案

以下任何一项都可以:

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'

关于jquery - 使用两个标识符按类选择元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9990510/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com