javascript day03

parentNode,获取元素的父级

  • hello world

小效果

  • hello world1
  • hello world2
  • hello world3
  • hello world4

childNodes 所有类型的节点既有元素节点,也有文本节点

    hello world
  • 1
  • 2

children只会读取元素节点

    hello world
  • 1
  • 2

firstChild获取的一个子节点(不会识别节点的类型)

    hello world
  • 1
  • 2

firstElementChild的兼容处理

  • 1
  • 2
  • 3

nextSibling(获取任意类型的节点)

  • 1
  • 2
  • 3

offsetParent获取给了定位元素的父级

//css
    
//html

改变元素的样式

//css
    
//html

小效果




小效果

//css

  • 账号登录
  • 扫码登录
![](images/01.png)

你可能感兴趣的:(javascript day03)