要将上一个元素添加到当前jQuery选择中,请使用insertBefore()
方法。
您可以尝试运行以下代码来学习如何使用insertBefore()
方法:
<!DOCTYPE html> <html> <head> <script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("<span>Demo text</span>").insertBefore("p"); }); }); </script> </head> <body> <button>Insert</button> <br> <p>This is a paragraph.</p> </body> </html>