【TS】Typescript学习a系列---《buttshoal》

button

  • onclick //on+事件,onclick对应的就是click事件
  • onmouseover
  • onmouseout
  • addEventListener(a, b, c)

    • c:true 采用捕获的方式,从下往上传播

    • c: false 采用冒泡的方式

【TS】Typescript学习a系列---《buttshoal》

【TS】Typescript学习a系列---《buttshoal》

事件是冒泡传播,从下往上、从里到外传播。

1. 点击lost图像,出发click事件,该事件会向上传播至align标签,align标签传递至ul标签。

2. ul监听器被触发

以上是 【TS】Typescript学习a系列---《buttshoal》 的全部内容, 来源链接: utcz.com/a/67409.html

回到顶部