jQuery after() 方法
jQuery 中的 after() 方法用于在选定的元素后面插入指定内容。
示例
现在,我们来看一个实现 jQuery after() 方法的示例 −
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("#btndemo").click(function(){ $("img").after("<strong>Text inserted after!</strong>"); }); }); </script> </head> <body> <img src="https://tutorialspoint.com/images/tp-logo-diamond.png" alt="Tutorialspoint Logo" width="220" height="120"><br><br> <button id="btndemo">Insert specified content</button> </body> </html>
输出
这会产生以下输出 −
点击上面的按钮显示文本 −
广告