search
HomeWeb Front-endHTML TutorialHTML 事件_html/css_WEB-ITnose

1、HTML 全局事件属性

  HTML4 的新特性之一就是可以使 HTML 事件触发浏览器中的行为,比方说当用户点击某个 HTML 元素时启动一段 JavaScript,在 HTML5 中还增加了一些新的事件属性。

  HTML 事件就是发生在 HTML 元素上的事情。当在 HTML 页面中使用 JavaScript 时, JavaScript 就可以触发这些事件。HTML 事件可以是浏览器行为,也可以是用户行为。浏览器行为比如:页面加载时触发事件,页面关闭时触发事件等等。用户行为比如:点击按钮触发事件,改变窗口大小触发事件等等。通常,在事件触发时 JavaScript 可以执行一些代码,HTML 元素中可以添加事件属性,使用 JavaScript 代码来添加 HTML 元素。HTML 事件属性可以直接执行 JavaScript 代码,HTML 事件属性可以调用 JavaScript 函数,但通常都是使用 JavaScript 代码来为 HTML 元素绑定事件处理程序。JavaScript 通过事件可以用于处理表单验证,用户输入,用户行为及浏览器动作。

  下面的表格提供了标准的事件属性,可以把它们绑定在 HTML 元素上,以定义事件行为。

 

2、窗口事件属性

  由窗口触发该事件,适用于

标签:
事件属性 说明
onload 当页面加载完成时运行脚本
onfocus 当窗口获得焦点时运行脚本
onblur 当窗口失去焦点时运行脚本
onbeforeonload  (H5) 在页面加载之前运行脚本
onunload    (H5) 当用户离开文档时运行脚本
onerror    (H5) 当错误发生时运行脚本
ononline    (H5) 当文档上线时运行脚本
onoffline    (H5) 当文档离线时运行脚本
onhaschange  (H5) 当文档改变时运行脚本
onundo    (H5) 当文档执行撤销时运行脚本
onmessage  (H5) 当触发消息时运行脚本
onresize    (H5) 当调整窗口大小时运行脚本
onpageshow  (H5) 当窗口可见时运行脚本
onpagehide  (H5) 当窗口隐藏时运行脚本
onpopstate  (H5) 当窗口历史记录改变时运行脚本
onredo    (H5) 当文档执行再执行操作时运行脚本
onstorage    (H5) 当 Web Storage(网络存储) 区域更新时(存储空间中的数据发生变化时)运行脚本
onbeforeprint  (H5) 在页面打印之前运行脚本
onafterprint  (H5) 在页面打印之后运行脚本

 

3、表单事件属性

  表单事件在 HTML 表单中触发 ,适用于所有 HTML 元素, 但该 HTML 元素需在 form 表单内:

事件属性 说明
onselect 当选取元素时运行脚本
onchange 当元素改变时运行脚本
onsubmit 当提交表单时运行脚本
onfocus 当元素获得焦点时运行脚本
onblur 当元素失去焦点时运行脚本
onforminput  (H5) 当表单获得用户输入时运行脚本
oninput    (H5) 当元素获得用户输入时运行脚本
onformchange  (H5) 当表单改变时运行脚本
oncontextmenu  (H5) 当触发上下文菜单时运行脚本
oninvalid     (H5) 当元素无效时运行脚本

 

4、多媒体事件属性

  通过图像(image),音频(audio) 或者 视频(video) 触发该事件,多应用于 HTML 媒体元素比如 HTML 事件_html/css_WEB-ITnose

事件属性 说明
onabort 当发生中止事件时运行脚本
onprogress  (H5) 当浏览器正在取媒介数据时运行脚本
onloadstart  (H5) 当浏览器开始加载媒介数据时运行脚本
onerror    (H5) 当在元素加载期间发生错误时运行脚本
onloadeddata  (H5) 当加载媒介数据时运行脚本
onreadystatechange  (H5) 当就绪状态(ready-state)改变时运行脚本
onplay    (H5) 当媒介数据将要开始播放时运行脚本
onplaying    (H5) 当媒介数据已开始播放时运行脚本
onpause    (H5) 当媒介数据暂停时运行脚本
onvolumechange  (H5) 当媒介改变音量亦或当音量被设置为静音时运行脚本
onended    (H5) 当媒介已抵达结尾时运行脚本
oncanplay    (H5) 当媒介能够开始播放但可能因缓冲而需要停止时运行脚本
oncanplaythrough  (H5) 当媒介能够无需因缓冲而停止即可播放至结尾时运行脚本
ontimeupdate  (H5) 当媒介改变其播放位置时运行脚本
onwaiting  (H5) 当媒介已停止播放但打算继续播放时运行脚本
ondurationchange  (H5) 当媒介长度改变时运行脚本
onratechange  (H5) 当媒介数据的播放速率改变时运行脚本
onemptied  (H5) 当媒介资源元素突然为空时(网络错误、加载错误等)运行脚本
onloadedmetadata  (H5) 当媒介元素的持续时间以及其他媒介数据已加载时运行脚本
onstalled  (H5) 当取回媒介数据过程中(延迟)存在错误时运行脚本
onsuspend  (H5) 当浏览器已在取媒介数据但在取回整个媒介文件之前停止时运行脚本
onseeked  (H5) 当媒介元素的定位属性不再为真且定位已结束时运行脚本
onseeking  (H5) 当媒介元素的定位属性为真且定位已开始时运行脚本

 

5、鼠标事件属性

  通过鼠标触发事件, 模拟用户的行为:

事件属性 说明
onclick 当单击鼠标时运行脚本
ondblclick 当双击鼠标时运行脚本
onmouseover 当鼠标移入元素时运行脚本
onmouseout 当鼠标移出元素时运行脚本
onmousemove 当鼠标移动时运行脚本
onmousedown 当按下鼠标按钮时运行脚本
onmouseup 当松开鼠标按钮时运行脚本
onmousewheel  (H5) 当转动鼠标滚轮时运行脚本
onscroll    (H5) 当滚动元素的滚动条时运行脚本
ondrag    (H5) 当拖动元素时运行脚本
ondragstart  (H5) 当拖动操作开始时运行脚本
ondragend  (H5) 当拖动操作结束时运行脚本
ondrop    (H5) 当被拖动元素正在被拖放时运行脚本
ondragover  (H5) 当元素被拖动至有效拖放目标上方时运行脚本
ondragenter  (H5) 当元素被拖动至有效的拖放目标时运行脚本
ondragleave  (H5) 当元素离开有效拖放目标时运行脚本

 

6、键盘事件属性

  通过键盘按键触发事件,模拟用户的行为:

事件属性 说明
onkeydown 当按下按键时运行脚本
onkeyup 当松开按键时运行脚本
onkeypress 当按下并松开按键时运行脚本

 

7、其他事件属性
事件属性 说明
onshow  (H5) 元素在上下文显示时触发
ontoggle  (H5) 当用户打开或关闭
元素时触发

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?Mar 04, 2025 pm 12:32 PM

The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

How to efficiently add stroke effects to PNG images on web pages?How to efficiently add stroke effects to PNG images on web pages?Mar 04, 2025 pm 02:39 PM

This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

How do I use the HTML5 <time> element to represent dates and times semantically?How do I use the HTML5 <time> element to represent dates and times semantically?Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use