fmpq.com
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Fmpq教程(fmpq.com)</title> <script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"> </script> <script> $(document).ready(function(){ $("div:has(p,span,li)").css("border","solid red"); }); </script> </head> <body> <div> <p> div 中的 p 元素 <span>这是 span 元素</span> </p> <li>div 中的列表项</li> </div><br> <div>这个 div 元素没有 p, span 或 li 元素。</div> </body> </html>
运行结果