example15.html 497 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title></title>
  6. </head>
  7. <body>
  8. <p>床前明月光</p>
  9. <p class="foo">疑似地上霜</p>
  10. <p>举头望明月</p>
  11. <p class="foo">低头思故乡</p>
  12. <script src="js/jquery.min.js"></script>
  13. <script>
  14. $(function() {
  15. // $('.foo').hide();
  16. // console.log($('p:contains("故乡")').text())
  17. for (var i = 0; i < 5; i += 1) {
  18. $(document.body).prepend($('p:first').clone());
  19. }
  20. });
  21. </script>
  22. </body>
  23. </html>