JavaScript学习-DOM了解

   JavaScript将浏览器本身,网页文档以及网页文档中的HTML元素等都用相应的内置对象来表示,这些对象及对象之间的层次关系统称为DOM(Document Object Model,文档对象模型)
   Dom层次关系图:
windows(代表浏览器)
    |____location
    |____frames
    |____history
    |____navigator
    |____screen
    |____document
          |__links
          |__anchors
          |__images
          |__filters
          |__forms
          |__applets
          |__embeds
          |__plusins
          |__frames
          |__ncipts
          |__all
          |__selection
          |__styleSheets
          |__body

你可能感兴趣的:(JavaScript)