编辑下面的代码:【加编码】
<html> <head> <script src="https://libs.baidu.com/jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function(){ $("div:not(:has(h1))").css("background-color","yellow"); }); </script> </head> <body> <div> <h1>This is a heading (h1)</h1> <p>This is a paragraph.</p> </div> <div> <h2>This is a heading (h2)</h2> <p>This is a paragraph.</p> </div> <div> <h3>This is a heading (h3)</h3> <p>This is a paragraph.</p> </div> </body> </html>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂