jQuery使用after()方法在元素后面添加多项内容的方法

Nimat ·
更新时间:2024-11-14
· 513 次阅读

本文实例讲述了jQuery使用after()方法在元素后面添加多项内容的方法。分享给大家供大家参考。具体分析如下:

jQuery可通过after()方法在元素后面添加多项内容,after()可以带多个参数,在指定元素后面添加多项内容

<!DOCTYPE html> <html> <head> <script src="js/jquery.min.js"> </script> <script> function afterText() { var txt1="<b>I </b>"; // Create element with HTML var txt2=$("<i></i>").text("love "); // Create with jQuery var txt3=document.createElement("big"); // Create with DOM txt3.innerHTML="jQuery!"; $("img").after(txt1,txt2,txt3); // Insert new elements after img } </script> </head> <body> <img src="/images/w3jquery.gif" alt="jQuery" width="100" height="140"> <br><br> <button onclick="afterText()">Insert after</button> </body> </html>

希望本文所述对大家的jQuery程序设计有所帮助。



after 方法 jQuery

需要 登录 后方可回复, 如果你还没有账号请 注册新账号