简单教程
提交运行
代码编辑器:
<!DOCTYPE html> <meta charset="utf-8"> <link href="/static/next/css/tryit.css?v=2017082407" rel="stylesheet"/> <script src="https://cdn.staticfile.org/jquery/2.2.4/jquery.min.js"></script> <script> $(document).ready(function(){ $("div p:nth-last-child(1)").css("background-color","yellow"); }); </script> <h1>这是在 body 中的标题</h1> <p>这是在 body 中的第一个段落</p> <p>这是在 body 中的第二个段落</p> <div style="border:1px solid;"> <p>这是在 div 中的第一个段落 </p> <p>这是在 div 中的第二个段落 </p> <p>这是在 div 中的最后一个段落 </p> <span>这是在 div 中的 span 元素</span> </div><br> <div style="border:1px solid;"> <p>这是在另一个 div 中的第一个段落</p> <p>这是在另二个 div 中的第一个段落</p> <p>这是在另一个 div 中的最后个段落(从 div 最后一个子元素算起的第一个子元素)</p> </div> <p>这是在 body 中的最后一个段落</p> <footer>简单教程,简单编程<br/>Copyright © 简单教程 www.twle.cn</footer>
运行结果: