appendTo()方法用于在所选元素的末尾添加其他内容。它与jQuery append()方法相同。 append()和appendTo()方法之间只有语法上的区别。
句法:
$(content).appendTo(selector)
jQuery appendTo()方法的示例
让我们以一个示例来演示jQuery appendTo()方法。
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("<span><b>Hello srcmini02.com</b></span>").appendTo("p");
});
});
</script>
</head>
<body>
<button>Add new content at the end of each p element</button>
<p>I am a new reader.</p>
<p>I am also a new reader.</p>
</body>
</html>
立即测试
评论前必须登录!
注册