3-4 DOM外部插入insertAfter()与insertBefore()
本节编程练习不计算学习进度,请电脑登录imooc.com操作

DOM外部插入insertAfter()与insertBefore()

与内部插入处理一样,jQuery由于内容目标的位置不同,然增加了2个新的方法insertAfter与insertBefore

注意事项:

任务

  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
  6. <title></title>
  7. <script src="https://www.imooc.com/static/lib/jquery/1.9.1/jquery.js"></script>
  8. <style>
  9. .test1 {
  10. background: #bbffaa;
  11. }
  12.  
  13. .test2 {
  14. background: yellow;
  15. }
  16. </style>
  17. </head>
  18.  
  19. <body>
  20. <h2>通过insertBefore与insertAfter添加元素</h2>
  21. <button id="bt1">点击通过jQuery的insertBefore添加元素</button>
  22. <button id="bt2">点击通过jQuery的insertAfter添加元素</button>
  23. <div class="aaron">
  24. <p class="test1">测试insertBefore,不支持多参数</p>
  25. </div>
  26. <div class="aaron">
  27. <p class="test2">测试insertAfter,不支持多参数</p>
  28. </div>
  29. <script type="text/javascript">
  30. $("#bt1").on('click', function() {
  31. //在test1元素前后插入集合中每个匹配的元素
  32. //不支持多参数
  33. $('<p style="color:red">测试insertBefore方法增加</p>', '<p style="color:red">多参数</p>').insertBefore($(".test1"))
  34. })
  35. </script>
  36. <script type="text/javascript">
  37. $("#bt2").on('click', function() {
  38. //在test2元素前后插入集合中每个匹配的元素
  39. //不支持多参数
  40. $('<p style="color:red">测试insertAfter方法增加</p>', '<p style="color:red">多参数</p>').insertAfter($(".test2"))
  41. })
  42. </script>
  43. </body>
  44.  
  45. </html>
  46.  
下一节