为什么芹菜不是蓝的
<!DOCTYPE html>
<html>
<head>
<title>:last-child子元素过滤选择器</title>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h3>改变每个"蔬菜水果"中最后一行的背景色</h3>
<ol>
<p><li>芹菜</li></p>
</ol>
<script type="text/javascript">
$("li:last-child").css("background-color", "blue");
</script>
</body>
</html>