當前位置:軟件學堂 > 資訊首頁 > 網(wǎng)絡編程 > 編程其他 > 使用DoM實現(xiàn)控件的替換

使用DoM實現(xiàn)控件的替換

2012/11/11 15:55:36作者:佚名來源:網(wǎng)絡

移動端

【實例名稱】

使用DoM實現(xiàn)控件的替換

【實例描述】

本鍘實現(xiàn)兩個div內(nèi)元素互換,主要依靠DOM的“replaceChild”方法。

【實例代碼】

<html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>標題頁-學無憂(m.wangbatian.cn)</title> <script type="text/javascript"> function test()     {         var mydom1=document.getElementById("divlist1"); //獲取指定ID的DOM對象         var mydom2=document.getElementById("divlist2"); //獲取指定ID的DOM對象         mydom1.replaceChild(mydom2.firstChild,mydom1.firstChild);     } </script>

</head> <body> <form id="form1" runat="server">       <input id="btn1" type="button" value="test" onclick="test()"/>       <div id="divlist1"><p>this is test1</p></div>       <div id="divlist2"><p>this is test2</p></div>     </form>

</body> </html>

 

【運行效果】

                                          初始運行效果

使用DoM實現(xiàn)控件的替換運行效果

                                         替換后的效果

使用DoM實現(xiàn)控件的替換運行效果

【難點剖析】

替換節(jié)點需要使用DOM中的“replaceChild”方法。需要注意的是此代碼的運行結(jié)果是“mydoml”中的元素被替換了,而“mydom2”的元素就沒有了,“replaceChild”方法相當于轉(zhuǎn)移。

【源碼下載】

為了JS代碼的準確性,請點擊:使用DoM實現(xiàn)控件的替換 進行本實例源碼下載 

標簽: DoM實現(xiàn)  控件  替換