欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-08-03 13:22:53
本文实例讲述了jquery使用after()方法在元素后面添加多项内容的方法。分享给大家供大家参考。具体分析如下: jquery可通过after()方法在元素后面添加多项内容,a...

本文实例讲述了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>