JavaScript中的交互式网页/事件处理

Programming languages like C, C++ etc are all based on synchronous coding approach i.e. the execution takes place from top to bottom in a linear manner.

诸如C,C ++等编程语言均基于同步编码方法,即执行以线性方式从上到下进行。

But JavaScript follows a different approach, it is based on asynchronous coding. Instead of traversing from top to bottom it executes through event handling.

但是JavaScript采用不同的方法,它基于异步编码。 它不是通过上下移动而是通过事件处理执行。

Events occur and get stacked in browser processor if a handler is associated with it, it is called and executed.

如果处理程序与事件相关联,则会发生事件并将其堆积在浏览器处理器中,然后调用并执行该事件

JS has many inbuilt objects with loads of events. In this article, we are going to use one of them i.e. window object and its resize event.

JS有许多内置对象,其中包含大量事件。 在本文中,我们将使用其中之一,即窗口对象及其调整大小事件。

Example: HTML file with internal JS within script tags

示例:在脚本标签中带有内部JSHTML文件

<html lang="en">
<head>
<meta charset="utf-8">
<title>Don't resize me, I'm ticklish!</title>
<script>
function resize() {
var element = document.getElementById("display");
element.innerHTML = element.innerHTML + " that tickles!";
}
</script>
</head>
<body>
<p id="display">
Whatever you do, don't resize this window! I'm warning you!
</p>
<script>
window.onresize = resize;
</script>
</body>
</html>

HTML code is as usual. In the second script tag, I have used an inbuilt object of JS i.e. window that represents the interface of the browser in which you are running the above code. This window has many parameters, methods, events.

HTML代码照常。 在第二个脚本标签中,我使用了JS的内置对象,即window,它表示您在其中运行以上代码的浏览器的界面。 该窗口具有许多参数,方法,事件。

Here its onresize event is being used, whenever you will change the size of your browser's window this event will be generated and get added to browser's processor stack.

在这里,将使用它的onresize事件,只要您更改浏览器窗口的大小,就会生成该事件并将其添加到浏览器的处理器堆栈中。

After that in line number 18 itself, this event has been assigned a handler by the name of resize.

在第18行本身之后,该事件已通过resize名称分配给处理程序。

Remember:

记得:

If no handler is assigned to an event, it still gets added to processor stack but nothing happens in response to it.

如果没有为事件分配处理程序,则该事件仍会添加到处理器堆栈中,但对此没有任何React。

Also, note that resize is nothing but a function defined in the first script tag.

另外,请注意,调整大小不过是第一个脚本标记中定义的功能。

Caution:

警告:

You don’t need brackets in line number 18 after the function resize because you are not calling it, instead, we are just assigning it to an event as an event handler.

调整函数大小后,不需要在行号18中放置括号,因为您没有调用它,而是将其分配给事件作为事件处理程序。

Now, in line number 7, in resize function I have accessed paragraph element of HTML file through id of the paragraph element. via DOM ( DOCUMENT OBJECT MODEL ) created by the browser.

现在,在第7行中,在调整大小功能中,我已经通过段落元素的id访问HTML文件的段落元素。 通过浏览器创建的DOM(DOCUMENT OBJECT MODEL)。

Also, one should be aware that document ( in line number 8 ) is another inbuilt object in js that represents the DOM generated by the browser or in other words we can say that Javascript uses document object to get access to DOM created by the browser. Like any other inbuilt object, it too has many methods in it, one of them being getElementByID.

另外,应该知道文档(第8行)是js中的另一个内置对象,表示由浏览器生成的DOM,换句话说,我们可以说Javascript使用文档对象来访问由浏览器创建的DOM。 像其他任何内置对象一样,它也包含许多方法,其中之一就是getElementByID 。

getElementByID is seen very commonly in the source code of interactive web pages.

getElementByID在交互式网页的源代码中非常常见。

It takes an id as an argument and returns an OBJECT representing HTML tag with that id.

它以一个id作为参数,并返回一个表示具有该IDHTML标签的对象。

Now this DOM object comes with many useful methods giving loads of powers to developers.

现在,此DOM对象带有许多有用的方法,可为开发人员提供各种功能。

Its innerHTML gives access to the text inside that particular tag.

它的innerHTML可以访问该特定标记内的文本。

Hence, appending THAT TICKLES each time the function resize is called or to be more particular the event onresize occurs.

因此,每次调用函数调整大小时,或者更具体地讲,发生onresize事件时,都应添加该标题。

I hope this was a great insight into event handling in js and the most comprehensive explanation of the above-mentioned code.

我希望这对js中的事件处理有很好的了解,并且对上述代码有最全面的解释。

Event handling is a great asset of javascript which can be used to create heavily responsive and dynamic web pages.

事件处理是javascript的重要资产,可用于创建高度响应和动态的网页。

I will be covering many other kinds of events available in js in my upcoming articles so STAY TUNED and keep practicing.

我将在我即将发表的文章中介绍js中可用的许多其他类型的事件,所以请继续学习并继续练习。

翻译自: https://www.includehelp.com/code-snippets/interactive-webpages-event-handling-in-javascript.aspx

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/380216.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

2008来了,搬个凳子先

此帖为证. 转载于:https://www.cnblogs.com/margiex/archive/2008/01/01/1022098.html

题目收藏夹(自用)

题目收藏夹&#xff08;自用&#xff09; 计数质数 【埃氏筛】【线性筛】

calayer 与uiview

研究Core Animation已经有段时间了&#xff0c;关于Core Animation&#xff0c;网上没什么好的介绍。苹果网站上有篇专门的总结性介绍&#xff0c;但是似乎原理性的东西不多&#xff0c;看得人云山雾罩&#xff0c;感觉&#xff0c;写那篇东西的人&#xff0c;其实是假 设读的人…

代换-置换网络(SP网络)

0x01 概述 代换-置换网络是一系列被应用于分组密码中相关的数学运算&#xff0c;高级加密标准&#xff08;英语&#xff1a;AES&#xff09;、3-Way、Kuznyechik、PRESENT、SAFER、SHARK、Square都有涉用。这种加密网络使用明文块和密钥块作为输入&#xff0c;并通过交错的若干…

Java SecurityManager getSecurityContext()方法与示例

SecurityManager类的getSecurityContext()方法 (SecurityManager Class getSecurityContext() method) getSecurityContext() method is available in java.lang package. getSecurityContext()方法在java.lang包中可用。 getSecurityContext() method is used to return an ob…

生日蜡烛

某君从某年开始每年都举办一次生日party&#xff0c;并且每次都要吹熄与年龄相同根数的蜡烛。 现在算起来&#xff0c;他一共吹熄了236根蜡烛。 请问&#xff0c;他从多少岁开始过生日party的&#xff1f; 请填写他开始过生日party的年龄数。 注意&#xff1a;你提交的应该是一…

修改vs2005的键盘风格设置

由于以前都是用VC6.0&#xff0c;安装的VS.NET默认的键盘快捷键布局都是C#的。 修改方法&#xff1a; 选项 -> 环境 -> 键盘 。进去后选第一项&#xff1a;键盘映射方案 即可&#xff0c;还可以在这里自定义其他快捷键 转载于:https://www.cnblogs.com/jacktu/archive/…

【贪心】最小生成树Kruskal算法Python实现

文章目录 [toc]问题描述最小生成树的性质证明 Kruskal算法时间复杂性Python实现 个人主页&#xff1a;丷从心 系列专栏&#xff1a;贪心算法 问题描述 设 G ( V , E ) G (V , E) G(V,E)是无向连通带权图&#xff0c; E E E中每条边 ( v , w ) (v , w) (v,w)的权为 c [ v ] …

asp.net(c#) 将dbf转换为xls或wps,并将数据的列名改成中文;并判断本机是否安装office2003,2007和wps2007,2010...

using Microsoft.Office.Interop.Excel;//转换为excel时&#xff0c;需要引用此命名空间 using ET;//转换为wps时&#xff0c;需要引用此命名空间using KSO;//转换为wps时&#xff0c;需要引用此命名空间当转换为excel时&#xff0c;需要引入Microsoft.Office.Interop.Excel.dl…

Java GregorianCalendar getActualMaximum()方法与示例

GregorianCalendar类getActualMaximum()方法 (GregorianCalendar Class getActualMaximum() method) getActualMaximum() method is available in java.util package. getActualMaximum()方法在java.util包中可用。 getActualMaximum() method is used to get the actual maxim…

一点一滴学习Linux--Mysql篇

1.查看是否安装了Mysql [rootlocalhost zhoulinghong]# rpm -qa |grep MySQL MySQL-server-community-5.1.22-0.rhel4 已经安装了。 2.安装mysql&#xff08;rpm&#xff09; [rootlocalhost zhoulinghong]# rpm -ivh MySQL-server-community-5.1.22-0.rhel4.i386.rpm …

HTML5 学习笔记

HTML5 学习笔记 前言 该学习笔记的相关学习视频&#xff1a;【狂神说Java】HTML5完整教学通俗易懂 目前笔记只有简单的例子和框架&#xff0c;将来在实践中会进一步学习和补充内容 目录HTML5 学习笔记前言网页基本信息网页基本标签标题标签段落标签换行标签水平线标签字体样式…

面向对象(方法的形式参数)

1&#xff0c;局部变量与成员变量的区别 1&#xff0c;在类中的位置不同 成员变量&#xff1a;在类中方法外 局部变量&#xff1a;在方法定义中或者方法声明上2&#xff0c;在内存中的位置不同 成员变量&#xff1a;在堆内存&#xff08;成员变量属于对象&#xff0c;对象进…

保护机制

0x01 概述 操作系统提供了许多安全机制来尝试降低或阻止缓冲区溢出攻击带来的安全风险&#xff0c;包括DEP、ASLR等。在编写漏洞利用代码的时候&#xff0c;需要特别注意目标进程是否开启了DEP&#xff08;Linux下对应NX&#xff09;、ASLR&#xff08;Linux下对应PIE&#xf…

机器学习降维算法一:PCA(主成分分析算法)

引言&#xff1a; 机器学习领域中所谓的降维就是指采用某种映射方法&#xff0c;将原高维空间中的数据点映射到低维度的空间中。降维的本质是学习一个映射函数 f : x->y&#xff0c;其中x是原始数据点的表达&#xff0c;目前最多使用向量表达形式。 y是数据点映射后的低维向…

VS 2005模板丢失找回的办法

安装其他插件的时候&#xff0c;常常模板丢失&#xff0c;比较郁闷&#xff0c;以前就用土办法&#xff0c;重装VS来解决这个问题&#xff0c;这次终于弄清楚怎么回事了&#xff0c;可以采取下面两个步骤解决1。复制ProjectTemplates和ItemTemplates&#xff0c;保证VS能找到相…

dbms数据库管理系统_基本数据库管理系统(DBMS)能力问题和解答

dbms数据库管理系统This section contains the aptitude questions and answers on basic concepts of DBMS. You will find aptitude questions on DDL, DCL, DML, DQL, TCL statements and other related topics. 本节包含有关DBMS基本概念的能力问题和解答。 您将找到有关DD…

面向对象(封装对象private关键字)

1.面向对象(封装的概述) A:封装概述 是指隐藏对象的属性和实现细节&#xff0c;仅对外提供公共访问方式。B:封装好处 隐藏实现细节&#xff0c;提供公共的访问方式提高了代码的复用性提高安全性。C:封装原则 将不需要对外提供的内容都隐藏起来。把属性隐藏&#xff0c;提供公…

Codeforces Global Round 13 C

C. Pekora and Trampoline 题意&#xff1a;对于数组a&#xff0c;每次出发开始可以选择任意元素作为起始点&#xff0c;然后在数组上移动&#xff0c;落点为i a[i]&#xff0c;直至超出数组范围&#xff0c;每次经过的点的值减一&#xff08;先移动再减/直至减到1为止&#…

一个简单的pwn例子---read函数

内容&#xff1a; #include<stdio.h> void exploit() {system("/bin/sh"); } void func() {char str[0x20];read(0, str, 0x50); } int main() {func();return 0; }我们要做的是利用溢出执行exploit函数 分析&#xff1a; 先执行func函数&#xff0c;func函数…