<div id="d1"></div> <script> //HTML function a(){ document.getElementById("d1").innerHTML="<img src='http://baike.baidu.com/cms/rc/240x112dierzhou.jpg'>"; } a(); //方法 function b(){ var d1=document.getElementById("d1"); var img=document.createElement("img"); img.src="http://baike.baidu.com/cms/rc/240x112dierzhou.jpg"; d1.appendChild(img); } b(); //对象 function c(){ var cc=new Image(); cc.src="http://baike.baidu.com/cms/rc/240x112dierzhou.jpg"; document.getElementById("d1").appendChild(cc); } c(); </script>
当前位置:主页 >> JavaScript >> 正文
js动态生成img标签的3种实现方法(对象、方法、html)
阅读:7042 输入:2015-12-26 13:12:02
- 上一篇:[教程]hmtl5实现qq聊天气泡效果
- 下一篇:通用php连接mssql操作类