首页 > Web开发 > 详细

js replaceChild

时间:2014-05-09 04:27:33      阅读:417      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣
//父亲元素.replaceChild(新,旧)

1
<ul id="city"> 2 <li id="bj">北京</li> 3 <li id="sh">上海</li> 4 <li id="gz">广州</li> 5 </ul> 6 7 <ul id="color"> 8 <li id="red">红色</li> 9 <li id="green">绿色</li> 10 <li id="blue">蓝色</li> 11 </ul> 12 <script type="text/javascript"> 13 var gzLiElement=document.getElementById("gz"); 14 gzLiElement.onclick=function(){ 15 var colorElement=document.getElementById("color"); 16 //父亲元素.replaceChild(新,旧) 17 document.getElementById("city").replaceChild(colorElement,this); 18 alert("xx"); 19 }
bubuko.com,布布扣

 

js replaceChild,布布扣,bubuko.com

js replaceChild

原文:http://www.cnblogs.com/friends-wf/p/3716184.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!