zoukankan      html  css  js  c++  java
  • DOM Event reference

    Event reference

    DOM Events are sent to notify code of interesting things that have taken place. Each event is represented by an object which is based on the Event interface, and may have additional custom fields and/or functions used to get additional information about what happened. Events can represent everything from basic user interactions to automated notifications of things happening in the rendering model.

    This article offers a list of events that can be sent; some are standard events defined in official specifications, while others are events used internally by specific browsers; for example, Mozilla-specific events are listed so that add-ons can use them to interact with the browser.

    Focus events

    Event NameFired When
    focus An element has received focus (does not bubble).
    blur An element has lost focus (does not bubble).
    focusin An element is about to receive focus (does bubble).
    focusout An element is about to lose focus (does bubble).

    https://w3c.github.io/uievents/#events-focusevent 

  • 相关阅读:
    git
    读后感
    总结
    封装,策略,Asp换脸
    典型用户
    第四次作业
    第三次作业
    计算
    感悟
    对git的认识
  • 原文地址:https://www.cnblogs.com/chucklu/p/14267601.html
Copyright © 2011-2022 走看看