What are the html events?
html events include: 1. Window events triggered by window objects; 2. Form events triggered by actions within HTML forms; 3. Keyboard events; 4. Mouse events triggered by mouse or similar user actions ;5. Media events triggered by media (such as videos, images, and audio).
The operating environment of this tutorial: Windows 7 system, HTML5 version, Dell G3 computer.
HTML has the ability to have events trigger actions in the browser, such as launching JavaScript when a user clicks on an element.
Events in html
1. Window events
Events triggered for the window object (applied to
tag):Attribute | Value | Description |
---|---|---|
onafterprint | script | Script that runs after the document is printed. |
onbeforeprint | script | Script that runs before document printing. |
onbeforeunload | script | Script that runs before the document is unloaded. |
onerror | script | Script that runs when an error occurs. |
onhaschange | script | A script that runs when the document has changed. |
onload | script | Triggered after the page has finished loading. |
onmessage | script | Script that runs when a message is triggered. |
onoffline | script | Script that runs when the document is offline. |
ononline | script | Script that runs when the document goes online. |
onpagehide | script | Script that runs when the window is hidden. |
onpageshow | script | Script that runs when the window becomes visible. |
onpopstate | script | Script that runs when the window history changes. |
onredo | script | Script that runs when the document performs redo. |
onresize | script | Fired when the browser window is resized. |
onstorage | script | Script that runs after the Web Storage zone is updated. |
onundo | script | Script that runs when the document executes undo. |
onunload | script | Fires once the page has been downloaded (or the browser window has been closed). |
2. Form event
An event triggered by an action within an HTML form (applies to almost all HTML elements, but most Commonly used in form elements):
Attribute | Value | Description |
---|---|---|
script | Script that runs when the element loses focus. | |
script | Script that runs when the element value is changed. | |
script | Script that runs when the context menu is triggered. | |
script | Script that runs when an element gets focus. | |
script | Script that runs when the form changes. | |
script | Script that runs when the form gets user input. | |
script | A script that runs when the element gets user input. | |
script | Script that runs when an element is invalid. | |
script | Fires when the reset button in the form is clicked. Not supported in HTML5. | |
script | Fires after the text in the element is selected. | |
script | Fires when the form is submitted. |
3. Keyboard event
Value | Description | |
---|---|---|
script | Fires when the user presses a key. | |
script | Fires when the user taps the button. | |
script | Fires when the user releases the key. |
Properties | Value | Description |
---|---|---|
onclick | script | Fires when a mouse click occurs on the element. |
ondblclick | script | Fires when a mouse double-click occurs on the element. |
ondrag | script | Script that runs when the element is dragged. |
ondragend | script | Script that runs at the end of a drag operation. |
ondragenter | script | A script that runs when an element has been dragged into a valid drag and drop area. |
ondragleave | script | Script that runs when an element leaves a valid drag-and-drop target. |
ondragover | script | Script that runs when an element is being dragged on a valid drag target. |
ondragstart | script | Script that runs at the beginning of a drag operation. |
ondrop | script | Script that runs when the dragged element is being dragged and dropped. |
onmousedown | script | Fires when the mouse button is pressed on the element. |
onmousemove | script | Fires when the mouse pointer moves over an element. |
onmouseout | script | Fires when the mouse pointer moves out of the element. |
onmouseover | script | Fires when the mouse pointer moves over an element. |
onmouseup | script | Fires when the mouse button is released on the element. |
onmousewheel | script | Script that runs when the mouse wheel is being rolled. |
onscroll | script | Script that runs when the element scroll bar is scrolled. |
5. Media event
Events triggered by media (such as video, image and audio) (applicable to all HTML elements, but commonly found in media elements, such as
Value | Description | |
---|---|---|
script | Script to run on exit. | |
script | A script that runs when the file is ready to start playback (when buffering is sufficient to start). | |
script | A script that runs when the media is able to play to the end without stopping due to buffering. | |
script | Script that runs when the media length changes. | |
script | A script that runs when a failure occurs and the file is suddenly unavailable (such as when the connection is unexpectedly dropped). | |
script | A script that runs when the media has reached the end (can send a message like "Thanks for watching"). | |
script | Script that runs when an error occurs during file loading. | |
script | Script that runs when media data has been loaded. | |
script | Script that runs when metadata (such as resolution and duration) is loaded. | |
script | A script that runs before the file starts loading and before any data is actually loaded. | |
script | A script that runs when the media is paused by the user or program. | |
script | Script that runs when the media is ready to start playing. | |
script | Script that runs when the media has started playing. | |
script | A script that runs when the browser is retrieving media data. | |
script | A script that runs whenever the playback rate changes (such as when the user switches to slow motion or fast forward mode). | |
script | A script that runs whenever the ready state changes (the ready state monitors the status of media data). | |
script | Script that runs when the seeking property is set to false (indicating that seeking has ended). | |
script | A script that runs when the seeking property is set to true (indicating that positioning is active). | |
script | A script that runs when the browser fails to retrieve media data for whatever reason. | |
script | A script that is run when retrieving media data is terminated for any reason before the media data is fully loaded. | |
script | A script that runs when the playback position changes (such as when the user fast forwards to a different location in the media). | |
script | A script that runs whenever the volume changes (including setting the volume to silent). | |
script | Run script when the media has stopped playing but intends to continue playing (such as when the media is paused to buffer more data) |
Introduction to Programming! !
The above is the detailed content of What are the html events?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The article discusses useEffect in React, a hook for managing side effects like data fetching and DOM manipulation in functional components. It explains usage, common side effects, and cleanup to prevent issues like memory leaks.

Lazy loading delays loading of content until needed, improving web performance and user experience by reducing initial load times and server load.

Higher-order functions in JavaScript enhance code conciseness, reusability, modularity, and performance through abstraction, common patterns, and optimization techniques.

The article discusses currying in JavaScript, a technique transforming multi-argument functions into single-argument function sequences. It explores currying's implementation, benefits like partial application, and practical uses, enhancing code read

The article explains React's reconciliation algorithm, which efficiently updates the DOM by comparing Virtual DOM trees. It discusses performance benefits, optimization techniques, and impacts on user experience.Character count: 159

The article explains useContext in React, which simplifies state management by avoiding prop drilling. It discusses benefits like centralized state and performance improvements through reduced re-renders.

Article discusses preventing default behavior in event handlers using preventDefault() method, its benefits like enhanced user experience, and potential issues like accessibility concerns.

The article discusses the advantages and disadvantages of controlled and uncontrolled components in React, focusing on aspects like predictability, performance, and use cases. It advises on factors to consider when choosing between them.
