search
HomeWeb Front-endJS TutorialUI Events User interface events_javascript skills

UI Events are not directly related to user behavior. UI Events include the following:

DomActivate: This event is triggered when an element is activated by some user behavior, such as the user's mouse or keyboard event. This event has been abandoned in DOM level 3 events. It is supported by FF2 and chrome. Due to the differences in cross-browser implementation mechanisms, the use of this event is not recommended.

Load: On the window object, it is triggered after the page is loaded. On the frameset, it is triggered after all the frames are loaded. When it refers to the img tag, it is triggered after the image is loaded, etc.

Unload: On the window object, it is triggered after the page is unloaded. On the frameset, it is triggered after all the frames are unloaded. When it refers to the img tag, it is triggered after the image is unloaded, etc.

abort: Triggered when an element is not completely loaded and before the user stops the download operation.

error: Triggered when an error occurs in the window's JavaScript, triggered when the img cannot be loaded, or the object element cannot be loaded, triggered when one or more frames in the frameset cannot be loaded,
Select: This event is triggered when the user selects one or more characters in the textbox.
Resize: Triggered when the window or frame is resized.
Scroll: Triggered when the user scrolls an element with a scroll bar.
The vast majority of HTML events are either related to the window object or the form control.
To determine whether a browser supports HTML events on DOM2 level events, you can use the following code:

  var isSupport = document.implementation.hasFeature('HTMLEvents','2.0');

If implemented on DOM2 level events, it will return true. Otherwise, return false

  var isSupported = document.implementation.hasFeature(“UIEvent”, “3.0”);

The same applies to dom3 level.

The load Event

The load event may be the most commonly used in javascript. For the window object, when the web page is completely loaded, the load event is triggered. In summary, any events that occur on the window can be accessed through the attributes of the body element, because there is no permission to access the window element in HTML.

For the img tag, when you specify the src attribute of the img tag, its load event can also be triggered.

as follows:

EventUtil.addHandler(window, “load”, function(){ 
var image = new Image(); 
EventUtil.addHandler(image, “load”, function(event){ 
alert(“Image loaded!”); 
}); 
image.src = “smile.gif”; 
});


There are also other elements that support load events in a non-standard way, such as script tag elements. When running in IE9, FF, In Opera, Chrome, and Safari 3.0, when script is added dynamically and the loading is completed, the load event of the script will be triggered. Unlike the img element, the js file starts loading after the src attribute is assigned, and this element has been added to the document. Therefore, the order of event handlers has nothing to do with src assignment.
Examples are as follows:

EventUtil.addHandler(window, “load”, function(){ 
var script = document.createElement(“script”); 
script.type = “text/javascript”; 
EventUtil.addHandler(script, “load”, function(event){ 
alert(“Loaded”); 
}); 
script.src = “example.js”; 
document.body.appendChild(script); 
});



IE and Opera also support the load event of the link tag.

The unload Event
The opposite of the load event is the unload event. This event is triggered when the document is completely unloaded. A typical example is that this event is triggered when the browser navigates from one page to another, and this event is usually used to release memory and avoid unnecessary memory occupation. Similar to the load event, the unload event can be created in two ways, namely through js and through HTML attributes.
Be extra careful with the unload event handler, because since the unload event is fired, not all objects are available and are still available when the page is loaded. An error will occur if you try to manipulate the position or change the appearance of a Dom node.

The resize Event

When the length and height of the browser window are changed, the resize event will be triggered. This event occurs on the window object. The registration method is the same as the registration method of the first two events. .

Like other events that occur on the window object, the target of this event in the DOM browser refers to the document, and there are no relevant attributes available in IE8 and earlier versions of the browser.

There are many differences in the resize event in different browsers. In IE safari chrome opera, as long as the value of a pixel is modified, the event will be triggered. In FF, this event is only triggered when the resize operation stops. And maximizing and minimizing the browser will also trigger this event.

The scroll Event

Although the scroll event occurs on the window object, it also applies to page-level elements. In mixed mode, the corresponding changes are reflected in the scrollLeft and scrollTop attributes of the

element; in standard mode, the corresponding changes occur in the element. Except for Safari, other browsers comply with the above rules. , for example:
EventUtil.addHandler(window, “scroll”, function(event){ 
if (document.compatMode == “CSS1Compat”){//标准模式反映在html上。 
alert(document.documentElement.scrollTop); 
} else { 
alert(document.body.scrollTop); 
} 
});

The above is the content of UI Events User Interface Events_javascript skills. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


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
es6数组怎么去掉重复并且重新排序es6数组怎么去掉重复并且重新排序May 05, 2022 pm 07:08 PM

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

JavaScript的Symbol类型、隐藏属性及全局注册表详解JavaScript的Symbol类型、隐藏属性及全局注册表详解Jun 02, 2022 am 11:50 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

艾尔登法环ui怎么一直显示艾尔登法环ui怎么一直显示Mar 11, 2024 pm 04:31 PM

在艾尔登法环中这款游戏的ui页面在一段时间以后是会自动进行隐藏的,有很多玩家不知道ui怎么一直显示,玩家可以在显示以及声音配置中选择其中的量表显示配置,点击开启即可。艾尔登法环ui怎么一直显示1、首先我们进入主菜单后,点击【系统配置】。2、在【显示及声音配置】界面,选择其中的量表显示配置。3、点击开启即可完成。

Vue 中常见的 UI 组件库有哪些?Vue 中常见的 UI 组件库有哪些?Jun 11, 2023 am 11:47 AM

Vue是一款流行的JavaScript框架,它使用组件化的方式构建Web应用程序。在Vue生态系统中,有很多UI组件库可以帮助您快速构建漂亮的界面,并提供丰富的功能和交互效果。在本文中,我们将介绍一些常见的VueUI组件库。ElementUIElementUI是一款由饿了么团队开发的Vue组件库,它为开发人员提供了一组优雅,

两位谷歌华人研究员发布首个纯视觉「移动UI理解」模型,四大任务刷新SOTA两位谷歌华人研究员发布首个纯视觉「移动UI理解」模型,四大任务刷新SOTAApr 12, 2023 pm 04:40 PM

对AI来说,「玩手机」可不是一件易事,光是识别各种用户界面(user interface, UI)就是一大难题:不光要识别出各个组件的类型,还要根据其使用的符号、位置来判断组件的功能。对移动设备UI的理解,能够帮助实现各种人机交互任务,比如UI自动化等。之前的工作对移动UI的建模通常依赖于屏幕的视图层次信息,直接利用了UI的结构数据,并借此绕过了从屏幕像素开始对组件进行识别的难题。不过并不是所有的场景下都有可用的视图层次,这种方法通常会因为对象描述的缺失或结构信息的错位而输出错误结果,所以尽管使

JavaScript对象的构造函数和new操作符(实例详解)JavaScript对象的构造函数和new操作符(实例详解)May 10, 2022 pm 06:16 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

JavaScript面向对象详细解析之属性描述符JavaScript面向对象详细解析之属性描述符May 27, 2022 pm 05:29 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

探索最受欢迎的jQuery移动UI框架探索最受欢迎的jQuery移动UI框架Feb 27, 2024 pm 12:03 PM

jQuery移动UI框架是一种用于开发移动应用程序的工具,它提供了丰富的界面组件和交互效果,使开发者能够快速构建优秀的移动用户界面。在这篇文章中,我们将探索一些最受欢迎的jQuery移动UI框架,并提供具体的代码示例来帮助读者更好地了解和使用这些框架。1.jQueryMobilejQueryMobile是一个基于HTML5和CSS3的开源移动UI框架,

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

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

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

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools