码迷,mamicode.com
首页 > 其他好文 > 详细

DOM 替换节点案例

时间:2017-11-25 17:30:53      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:input   wim   images   ntb   get   tee   attribute   creat   img   

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<script type="text/javascript">
function replaceImg(){
var divNode=document.getElementById("div1");

var newImg=document.createElement("img");
newImg.setAttribute("src","/DOM/img/timg (1).jpg");//设置src属性
newImg.setAttribute("width","100");//设置宽属性
newImg.setAttribute("height","80");//设置高属性

var docBody=document.getElementsByTagName("body");
docBody[0].replaceChild(newImg,divNode);
}
</script>
<body>
<div id="div1">div文本内容</div>
<input type="button" value="将div 替换城图片"onclick="replaceImg()" />
</body>
</html>

。。。。。。。。。

技术分享图片

DOM 替换节点案例

标签:input   wim   images   ntb   get   tee   attribute   creat   img   

原文地址:http://www.cnblogs.com/wxhhts/p/7895494.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!