<html>
<head>
<meta http-equiv="content-type"content="text/html; charset=utf-8">
<script type="text/javascript">
window.onload = function(){
varbigImg = document.createElement("img"); //创建一个img元素
bigImg.src="http://www.baidu.com/img/baidu_sylogo1.gif"; //给img元素的src属性赋值
//bigImg.width="320"; //320个像素 不用加px
varmyp = document.getElementById('myp'); //获得dom对象
myp.appendChild(bigImg); //为dom添加子元素img
};
</script>
</head>
<body>
<p id="myp"style="border:1px solid #eee;width:320px;height:160px;"></p>
</body>
</html>
网友评论