溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何使用JS中DOM來控制HTML元素

發(fā)布時(shí)間:2020-09-28 17:11:28 來源:億速云 閱讀:104 作者:小新 欄目:web開發(fā)

小編給大家分享一下如何使用JS中DOM來控制HTML元素,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

                                                           這篇文章主要介紹了JS中使用DOM來控制HTML元素的相關(guān)資料,需要的朋友可以參考下

1.getElementsByName():獲取name.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~`

例:

<p name="pn">hello</p>
   <p name="pn">hello</p>
   <p name="pn">hello</p>
   <script>
       function getName(){
                  var count=document.getElementsByName("pn");
                  alert(count.length);
                  var p=count[2];
                  p.innerHTML="world";
          }
   </script>

結(jié)果:界面打印出三個(gè)hello,并且伴有一個(gè)提示框“3”,當(dāng)點(diǎn)擊確定后,界面顯示的內(nèi)容變?yōu)閔ello hello world

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~··

2.getElementsByTagName():獲取元素。

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

<p>hello</p>
   <p>hello</p>
   <p>hello</p>
   <script>
       function getName(){
                  var count=document.getElementsByTagName("p");
                  alert(count.length);
                  var p=count[2];
                  p.innerHTML="world";
          }
   </script>

結(jié)果:界面打印出三個(gè)hello,并且伴有一個(gè)提示框“3”,當(dāng)點(diǎn)擊確定后,界面顯示的內(nèi)容變?yōu)閔ello hello world

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

3.getAttribute():獲取元素屬性。

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

<a id="aid" title="得到a的標(biāo)簽屬性"></a>
   <script>
           function getAttr1(){
               var anode=document.getElementById("aid");
               var attr=anode.getAttribute("id");
               alert("a的ID是:"+attr);
            }
           function getAttr2(){
              var anode=document.getElementById("aid");
              var attr=anode.getAttribute("title");
              alert("a的title內(nèi)容是:"+attr);
           }
            getAttr1();
            getAttr2();
  </script>

結(jié)果:彈出提示框“a的ID是:aid”.點(diǎn)擊確定后,彈出提示框“a的title內(nèi)容是:得到a的標(biāo)簽屬性”。

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4.setAttribute()設(shè)置元素屬性。

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

<a id="aid2">aid2</a> 
   <script>
        function setAttr(){
           var anode=document.getElementById("aid2");
           anode.setAttribute("title","動(dòng)態(tài)設(shè)置a的title屬性");
           var attr=anode.getAttribute("title");
           alert("動(dòng)態(tài)設(shè)置的title值為:"+attr);
       }
       setAttr();
   </script>

結(jié)果:彈出提示框“動(dòng)態(tài)設(shè)置的title值為:動(dòng)態(tài)設(shè)置a的title屬性”。

~~~~~~~~~~~~~~~~~~~~~~~~~~~~

5.childNodes():訪問子節(jié)點(diǎn)。

~~~~~~~~~~~~~~~~~~~~~~~~~~··

<ul><li>1</li><li>2</li><li>3</li></ul>
   <script>
           function getChildNode(){
                var childnode=document.getElementsByTagName("ul")[0].childNodes;
                alert(childnode.length);
                alert(childnode[0].nodeType);
           }
          getChildNode();
  </script>

結(jié)果:界面打印出.1 .2 .3彈出對話框“3”,按確定后彈出“1”。

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

6.parentNode():訪問父節(jié)點(diǎn)。

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~·

<p>
        <p id="pid"></p>
   </p>
   <script>
        function getParentNode(){
            var p=document.getElementById("pid");
            alert(p.parentNode.nodeName);
        }
       getParentNode();
  </script>

結(jié)果:彈出提示框:p.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

7.createElement():創(chuàng)建元素節(jié)點(diǎn)。

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

例:

 <script>
       function createNode(){
             var body=document.body;
             var input=document.createElement("input");
             input.type="button";
             input.value="按鈕";
             body.appendChild(input);//插入節(jié)點(diǎn)
        }
         createNode();
 </script>

結(jié)果:出現(xiàn)一個(gè)按鈕。

~~~~~~~~~~~~~~~~~~~~~~~~~~~

8.createTextNode():創(chuàng)建文本節(jié)點(diǎn)。

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

例:

    <script>
        function createNode(){
              var element = document.createElement("p");
              element.className = "message";
              var textNode = document.createTextNode("Hello world!");
              element.appendChild(textNode);
              document.body.appendChild(element);
        }
      createNode();
   </script>

代碼分析:這個(gè)例子創(chuàng)建了一個(gè)新<p>元素并為它指定了值為“message”的class特性。然后,又創(chuàng)建了一個(gè)文本節(jié)點(diǎn),并將其添加到前面創(chuàng)建的元素中。最后一步,就是將這個(gè)元素添加到了文檔中的<body>元素中,這樣可以在瀏覽器中看到新創(chuàng)建的元素和文本節(jié)點(diǎn)了。

結(jié)果:頁面顯示hello world。

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

9.insertBefore():插入節(jié)點(diǎn)。

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

<p id="p">
          <p id="pid">p元素</p>
    </p>
    <script>
        function addNode(){
             var p=document.getElementById("p");
             var node=document.getElementById("pid");
             var newnode=document.createElement("p");
             newnode.innerHTML="動(dòng)態(tài)插入一個(gè)p元素";
             p.insertBefore(newnode,node);
        }
        addNode();
    </script>

結(jié)果:界面打印出:動(dòng)態(tài)插入一個(gè)p元素

p元素

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

10.removeChild():刪除節(jié)點(diǎn)。

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~·

<p id="p">
          <p id="pid">p元素</p>
    </p>
    <script>
       function removeNode(){
               var p=document.getElementById("p");
               var p=p.removeChild(p.childNodes[1]);
        }
      removeNode();
   </script>

結(jié)果:界面什么也沒顯示。

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

11.offsetHeight:網(wǎng)頁尺寸

12.scrollHeight:網(wǎng)頁尺寸

~~~~~~~~~~~~~~~~~~~~~~~~~~~·

例:

  <script>
      function getSize(){
          var width=document.documentElement.offsetWidth||document.body.offsetWidth;//解決兼容問題
          var height=document.documentElement.offsetHeight||document.body.offsetHeight;
          alert(width+","+height);
      }
      getSize();
 </script>

顯示結(jié)果:

如何使用JS中DOM來控制HTML元素

看完了這篇文章,相信你對如何使用JS中DOM來控制HTML元素有了一定的了解,想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI