jQuery使⽤after()⽅法在元素后⾯添加多项内容的⽅法本⽂实例讲述了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
jquery修改html内容var ateElement("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程序设计有所帮助。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论