---css
<style type="text/css">
img{width: 10px;height: 10px;background-color: green;}</style>
--html
<body>
<h1>标题</h1>
<div id='div1'></div>
<button onclick="createImg()">添加图片</button>
</body>
---js
<script type="text/javascript">
function createImg(){
//1.创建img节点
var imgNode=document.createElement('img');
var div1=document.getElementById('div1');
div1.appendChild(imgNode);
}
</script>