In-depth understanding of HTML form input monitoring

In-depth understanding of HTML form input monitoring

Today I saw a blog post about input events, and on a whim I sorted out the relevant information.

event:

 function changeVal(value){ console.log($(value).val())}

onchange: The onchange event is triggered only when the previous and next content changes and loses focus.

 <input type="text" value="" onchange="changeVal(this)">

oninput: The oninput event is triggered when the value changes.

 <input type="text" value="" oninput="changeVal(this)">

There is also an onpropertychange event, which has a similar effect to oninput, but is specific to IE! And it didn’t work when I tested it, I was totally confused. . .

Replenish:

Cases where oninput and onpropertychange fail:

oninput event:

(1) When the value is changed in the script, it will not be triggered;

(2) It will not be triggered when selecting from the browser's automatic drop-down prompt;

onpropertychange event:

When input is set to disable=true, it will not be triggered.

The above is all the content of the in-depth understanding of html form input monitoring brought to you by the editor. I hope you like it~

If you want to know more about game activities and game strategies, please continue to pay attention to this site. The editor of this site will bring you the best, most fun and freshest game information as soon as possible. For more exciting content, please visit jb51 game channel!

<<:  Detailed explanation of the difference between url ending with / and without / in nginx proxy_pass configuration

>>:  What is a MySQL tablespace?

Recommend

CSS uses BEM naming convention practice

When you see a class, what information do you wan...

Why I recommend Nginx as a backend server proxy (reason analysis)

1. Introduction Our real servers should not be di...

How to use filters to implement monitoring in Zabbix

Recently, when I was working on monitoring equipm...

Solution to inserting a form with a blank line above and below

I don't know if you have noticed when making a...

Simple analysis of EffectList in React

Table of contents EffectList Collection EffectLis...

How to set the border of a web page table

<br />Previously, we learned how to set cell...

How to access MySql through IP address

1. Log in to mysql: mysql -u root -h 127.0.0.1 -p...

Class in front-end JavaScript

Table of contents 1. Class 1.1 constructor() 1.2 ...

Example code for implementing WeChat account splitting with Nodejs

The company's business scenario requires the ...

Common structural tags in XHTML

structure body, head, html, title text abbr, acro...

Best Practices for Developing Amap Applications with Vue

Table of contents Preface Asynchronous loading Pa...

Web Design Tutorial (5): Web Visual Design

<br />Previous article: Web Design Tutorial ...