上面只获取到了第一个 p 标签的 background-color,那么怎么才能获取到第二或第三个 p 的背景颜色呢,加入选择器 :nth-child():
<body>
<h2>这是一个标题</h2>
<pstyle="background-color:#ff0000">这是一个段落。</p>
<pstyle="background-color:#00ff00">这是一个段落。</p>
<pstyle="background-color:#0000ff">这是一个段落。</p>
<button>返回第一个 p 元素的 background-color </button>
</body>
$("button").click(function(){
alert("p1背景颜色 = " + $("p:nth-child(2)").css("background-color"));
alert("p2背景颜色 = " + $("p:nth-child(3)").css("background-color"));
alert("p3背景颜色 = " + $("p:nth-child(4)").css("background-color"));
});