javascript 學習之旅 (2)

來源:互聯網
上載者:User

第三章 DOM

DOM是“Document Object Model”(文件物件模型)的首字母縮寫。

節點

元素節點(element node):是DOM的原子。如:文本段落元素的名字p 無序清單元素的名字ul... 【nodeType的屬性值是1】

文本節點(text node):文本節點總是包含在元素節點的內部。【nodeType的屬性值是3】

屬性節點(attribute node):屬性節點總是被放在起始標籤裡。如:title="a gentle reminder"【nodeType的屬性值是2】

getElementById()方法 返回的是對象

document.getElementById(id) id必須放在單引號或雙引號裡 如 :document.getElementById("purchases")

getElementsByTagName()方法 返回的是對象數組

getElementsByTagName(tag) tag必須是(x)html 標籤的名字,並放在雙引號裡 如:document.getElementsByTagName("li")

getAttribute()方法 查詢屬性 通過具體的對象調用

object.getAttribute(attribute)

setAttribute()方法 設定屬性

object.setAttribute(attribute,value)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.