代码
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<script src="js/jquery.js"></script>
</head>
<style>
div{
width: 200px;
height: 200px;
background-color: darkgrey;
}
</style>
<body>
<div>
<p>我是第一个p元素</p>
<p id="er">我是第二个p元素</p>
<p>我是第三个p元素</p>
</div>
<script type="text/javascript">
$(function(){
$("div").on("click",function(){
$("#er").css("background-color","orange");
});
});
</script>
</body>
</html>
效果