JavaScript實現自動產生網頁元素功能(按鈕、文本等)_javascript技巧

來源:互聯網
上載者:User

建立元素的方法:

  • 1、利用createTextNode()建立一個文字物件
  • 2、利用createElement()建立一個標籤對象
  • 3、直接利用容器標籤中的一個屬性:innerHTML-----本質上改該標籤容器中的“html代碼”,不是我們認為的對象樹的操作

詳解代碼:

<body>  <input type="button" value="建立並添加節點1" onclick="addNode1()"/>  <input type="button" value="建立並添加節點2" onclick="addNode2()"/>  <input type="button" value="建立並添加節點3" onclick="addNode3()"/>  <input type="button" value="remove節點1 " onclick='removenode()'/>  <input type="button" value="replaceNode節點2替換 " onclick='remove2()'/><!--1替換2,並且1沒有保留-->  <input type="button" value="clone替換 " onclick='clone()'/>  <div id="div_id1">這是div模組--</div>  <div id="div_id2">必須好好地學習,這樣才能讓自己有很好的回報</div>  <div id="div_id3">好好乾,加油(^ω^)</div>  <div id="div_id4">你懂得地區,實驗地區</div>   </body> 

方式一 :建立文字文件

<span style="font-size:18px;">function addNode1(){    //1利用createTextNode()建立一個文字物件    var text=document.createTextNode("這是修改的,建立的文檔");    //2擷取div對象    var node1=document.getElementById("div_id1");    //添加成div對象的孩子    node1.appendChild(text);}</span><span style="font-size:24px;"> </span> 

方式二:利用createElement()建立一個標籤對象

function addNode2(){    //1,利用createElement()建立一個標籤對象    var nn=document.createElement("input");    nn.type="button"    nn.value="建立的按鈕";    nn.target="_blank";    //2,獲得div對象    var node2=document.getElementById("div_id2");    //添加成div對象的孩子    node2.appendChild(nn);   } 

方式三:直接利用容器標籤中的一個屬性:innerHTML-----本質上改該標籤容器中的“html代碼”,不是我們認為的對象樹的操作

function addNode3(){     var mm=document.getElementById("div_id3");     mm.innerHTML="<a href='http://www.baidu.com'><input type='button' value='建立的按鈕'></a>";     } 
  • 刪除節點

使用 removeNode 和 removeChild 從元素上刪除子結點兩種方法,通常採用第二種方法

function removenode(){    var node =document.getElementById("div_id4"); //   alert(node.nodeName);//DIV //  自殺式 node.removeNode(true); //removeNode 從文檔層次中刪除對象。ie可以出現現象,一般不採用自殺式    node.parentNode.removeChild(node);////通過父節點去刪除它的孩子,一般常用    alert("aa");   } 
  • 替換 沒有保留替換的那個
function remove2(){    var node1 =document.getElementById("div_id1");    var node2 =document.getElementById("div_id2"); //   node1.replaceNode(node2);//自殺式不通用 ////通過父節點去替換它的孩子:用node1去替換node2    node1.parentNode.replaceChild(node1,node2);//object.replaceChild(oNewNode, oChildNode)   } 
  • clone節點
function clone(){   var node1 =document.getElementById("div_id1");   var node2 =document.getElementById("div_id2");   var node1_2=node1.cloneNode(true);//false只能clone基本的,不會clone下面的其他子節點   //複製一個對象,預設參數為false。參數為true時,連子節點一起複製   node1.parentNode.replaceChild(node1_2,node2);  } 

效果圖:

全部的原始碼:

<!DOCTYPE html> <html>  <head>  <title>DOM_operation.html</title>  <style type="text/css">   div{    border:#00f solid 1px;    width:200px;    height:100px;   }  </style>  <script type="text/javascript"> //AAAA 增    //方式一 建立文字文件   function addNode1(){    //1利用createTextNode()建立一個文字物件    var text=document.createTextNode("這是修改的,建立的文檔");    //2擷取div對象    var node1=document.getElementById("div_id1");    //添加成div對象的孩子    node1.appendChild(text);   }      function addNode2(){    //1,利用createElement()建立一個標籤對象    var nn=document.createElement("input");    nn.type="button"    nn.value="建立的按鈕";    nn.target="_blank";    //2,獲得div對象    var node2=document.getElementById("div_id2");    //添加成div對象的孩子    node2.appendChild(nn);   }      //直接利用容器標籤中的一個屬性:innerHTML-----本質上改該標籤容器中的“html代碼”,不是我們認為的對象樹的操作   function addNode3(){     var mm=document.getElementById("div_id3");     mm.innerHTML="<a href='http://www.baidu.com'><input type='button' value='建立的按鈕'></a>";        } //BBBBBB-------刪     //刪除節點 使用 removeNode 和 removeChild 從元素上刪除子結點兩種方法,通常採用第二種方法   function removenode(){    var node =document.getElementById("div_id4"); //   alert(node.nodeName);//DIV //  自殺式 node.removeNode(true); //removeNode 從文檔層次中刪除對象。ie可以出現現象,一般不採用自殺式    node.parentNode.removeChild(node);////通過父節點去刪除它的孩子,一般常用    alert("aa");   }   //替換 沒有保留替換的那個   function remove2(){    var node1 =document.getElementById("div_id1");    var node2 =document.getElementById("div_id2"); //   node1.replaceNode(node2);//自殺式不通用 ////通過父節點去替換它的孩子:用node1去替換node2    node1.parentNode.replaceChild(node1,node2);//object.replaceChild(oNewNode, oChildNode)   }   function clone(){    var node1 =document.getElementById("div_id1");    var node2 =document.getElementById("div_id2");    var node1_2=node1.cloneNode(true);//false只能clone基本的,不會clone下面的其他子節點    //複製一個對象,預設參數為false。參數為true時,連子節點一起複製    node1.parentNode.replaceChild(node1_2,node2);   }  </script>  </head>   <body>  <input type="button" value="建立並添加節點1" onclick="addNode1()"/>  <input type="button" value="建立並添加節點2" onclick="addNode2()"/>  <input type="button" value="建立並添加節點3" onclick="addNode3()"/>  <input type="button" value="remove節點1 " onclick='removenode()'/>  <input type="button" value="replaceNode節點2替換 " onclick='remove2()'/><!--1替換2,並且1沒有保留-->  <input type="button" value="clone替換 " onclick='clone()'/>  <div id="div_id1">這是div模組--</div>  <div id="div_id2">必須好好地學習,這樣才能讓自己有很好的回報</div>  <div id="div_id3">好好乾,加油(^ω^)</div>  <div id="div_id4">你懂得地區,實驗地區</div>      </body> </html> 

以上就是為大家分享如何通過JavaScript實現自動產生網頁元素功能的方法,希望對大家的學習有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.