zoukankan      html  css  js  c++  java
  • HTML DOM

    HTML DOM 定义了访问和操作 HTML 文档的标准方法。

    (Document Object Model,DOM)

    http://www.w3school.com.cn/htmldom/index.asp

    http://www.w3.org/DOM/

    The Document Object Model is a platform- and language-neutral interface that will allow programs and scripts to dynamically access and update the content, structure and style of documents. The document can be further processed and the results of that processing can be incorporated back into the presented page. This is an overview of DOM-related materials here at W3C and around the web.

    http://www.ibm.com/developerworks/cn/education/xml/x-udom/index.html

    DOM Document 是以层次结构组织的节点或信息片断的集合. DOM 被认为是基于树基于对象的。

    文档对象模型(DOM)是什么?

    可扩展标记语言(或 XML)的基础是 DOM。XML 文档具有一个称为nodes的信息单元层次结构;DOM 是描述节点及节点间关系的方式。

    除了作为 XML 数据的概念性描述这个角色之外,DOM 还是万维网联盟(World Wide Web Consortium,W3C)维护的一系列推荐标准。DOM 最初被当作 Web 浏览器识别和处理页面元素的方式 ―― 即在 W3C 介入之前的功能,称为 “DOM Level 0”。

    实际的 DOM 推荐标准(当前处于 Level 2,在本教程编写之际,Level 3 已呼之欲出)是一个 API,它定义了 XML 文档中出现的对象,以及用于访问和处理这些对象的方法和属性。

  • 相关阅读:
    springMvc接口请求参数
    ThreadLocal 结构
    遇到的问题
    jsonview的安装
    Java
    学习资源
    Java
    Java
    Java
    Java
  • 原文地址:https://www.cnblogs.com/happywang/p/3083657.html
Copyright © 2011-2022 走看看