2.1.3 类选择器

<script src="jquery-1.6.4.js" type="text/javascript"></script>
<html>
<div id="aaaa" class="red">测试1</div>
<div id="bbbb" class="blue">测试2</div>
<div id="cccc" class="orange">测试3</div>
</html>
<script>
$(function(){
$(".red").css("color","red");
console.log($(".red")[0].innerHTML)
})
</script>
原文地址:https://www.cnblogs.com/hzcya1995/p/13348617.html