Introduction to the use of this in HTML tags

Introduction to the use of this in HTML tags
For example:

Copy code
The code is as follows:

<html>
<head>
<script type="text/javascript">
function showHint(str){
alert(str) ;
}
</script>
</head>
<body>
<input type="text" onkeyup="showHint(this.value)"/> <!--Here, this in the html tag represents this tag-->
</body>
</html>

The running result is: after entering characters into the text box through the keyboard, when the key is lifted (that is, when the keyup event occurs), the pressed characters will be displayed.

<<:  Detailed explanation of Linux kernel macro Container_Of

>>:  The relationship between JS constructor and instantiation and prototype introduction

Recommend

Complete steps for mounting a new data disk in CentOS7

Preface I just bought a new VPS. The data disk of...

Analysis and summary of the impact of MySQL transactions on efficiency

1. Database transactions will reduce database per...

WeChat applet realizes the nine-square grid effect

This article shares the specific code for the WeC...

JS realizes the automatic playback effect of pictures

This article shares the specific code of JS to ac...

Detailed installation tutorial of Mysql5.7.19 under Centos7

1. Download Download mysql-5.7.19-linux-glibc2.12...

Use nexus as a private library to proxy docker to upload and download images

1. Nexus configuration 1. Create a docker proxy U...

Detailed explanation of MySQL cumulative calculation implementation method

Table of contents Preface Demand Analysis Mysql u...

Implementation of webpack code fragmentation

Table of contents background CommonsChunkPlugin s...

MySQL data duplicate checking and deduplication implementation statements

There is a table user, and the fields are id, nic...

Specific use of node.js global variables

Global Object All modules can be called global: r...

MySql 5.7.21 free installation version configuration method under win10

1. Unzip to the location where you want to instal...