创建文档对象


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<title>创建文档对象</title>
</head>

<body>
<div id="box"></div>
<input type="button" value="按钮" id="inp" onClick="fun()">
</body>

</html>
<script>
function () {
var box = document.getElementById('box')
var inp = document.getElementById('inp')
var pic = document.createElement('img')
pic.src = 'http://img1.qunarzz.com/piao/fusion/1801/1a/94428c6dea109402.jpg_640x200_2cf590d8.jpg'
box.appendChild(pic)
}
</script>