append和appendTo的区别以及js中的appendChild用法
很多像我一样接触JS没多久的小白对append和appendTo的区别以及js中的appendChild用法都会有所模糊,下面对这个进行详细区分:
append和appendTo的区别:
append()前面是要选择的对象,后面是要在对象内插入的元素内容
appendTo()前面是要插入的元素内容且为Jquery对象,而后面是要选择的对象
实例:
$('#a').append('content');
$('<div>content</div>').appendTo($('#a'));
注意appendTo前面一定要是Jquery对象。
s中的appendChild用法:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<titleappend和appendTo的区别以及js中的appendChild用法</title>
</head>
<body>
<ul id="myList1"><li>Coffee</li><li>Tea</li></ul>
<ul id="myList2"><li>Water</li><li>Milk</li></ul>
<p id="demo">单击按钮将项目从一个列表移动到另一个列表中</p>
<button onclick="myFunction()">点我</button>
<script>
function myFunction(){
var node=document.getElementById("myList2").lastChild;
document.getElementById("myList1").appendChild(node);
}
</script>
</body>
</html>