A brief analysis of adding listener events when value changes in html input

A brief analysis of adding listener events when value changes in html input

The effect to be achieved
In many cases, we will monitor the changes in the input box value in real time so that we can take immediate actions to guide the browser to enhance the user experience of the website. For example, instantly display the number of bytes that have been entered into the input box, or instantly read the input value to guide the search, which is the associated search effect of Google.
We can do a lot if we can just capture the moment.
What you need to know
First, we need to understand the difference between onchange and onpropertychange :

In IE, when the properties of an HTML element change, they can be captured instantly through onpropertychange.
When the onchange attribute value changes, the current element must also lose focus (onblur) in order to activate the event.

After understanding this, we find that the effect of onpropertychange is what we want, but unfortunately, it only works under IE. Can we find another time to replace onpropertychange?

After reading the information, I learned that the oninput event can be used to achieve the same effect in other browsers . It's great. We just need to distinguish the IE browser.

Use of oninput

Next, let's take a look at how to use oninput.
If you write the registration time directly on the page, you can do it as follows:
<、input type="text" name="textfield" oninput="alert(this.value);" onpropertychange="alert(this.value)" />

However, when oninput is separated from the JS code, it is somewhat different from the normal event registration method and must be registered using addEventListener.

Difference between attachEvent and addEventListener

At this point, let's take a look at how to use attachEvent and addEventListener:

The attachEvent method attaches other processing events to an event. (Not supported on Mozilla series)
addEventListener method for Mozilla series

Example:

XML/HTML CodeCopy content to clipboard
  1. document.getElementByIdx_x_x("btn") .onclick = method1 ;
  2.   
  3. document.getElementByIdx_x_x("btn") .onclick = method2 ;
  4.   
  5. document.getElementByIdx_x_x("btn") .onclick = method3 ;

If written like this, only medhot3 will be executed

Write it like this:

XML/HTML CodeCopy content to clipboard
  1. var btn1Obj = document .getElementByIdx_x_x("btn1");
  2.   
  3. btn1Obj.attachEvent("onclick",method1);
  4.   
  5. btn1Obj.attachEvent("onclick",method2);
  6.   
  7. btn1Obj.attachEvent("onclick",method3);

The execution order is method3->method2->method1

If it is the Mozilla series, this method is not supported and addEventListener is needed

XML/HTML CodeCopy content to clipboard
  1. var btn1Obj = document .getElementByIdx_x_x("btn1");
  2.   
  3. btn1Obj.addEventListener("click",method1,false);
  4.   
  5. btn1Obj.addEventListener("click",method2,false);
  6.   
  7. btn1Obj.addEventListener("click",method3,false);
  8.   
  9. The execution order is method1- > method2- > method3

Now that we know how to use addEventListener to register the oninput event, let's go back to the problem we need to solve [dividing the browser].

Determine IE browser

How to distinguish IE?
This seems to be a common problem. There are many ways to find it on the Internet, which can be classified into two categories:
The first is to determine the functional attributes of the browser.
The second is to determine the traditional user-agent string, which may be the oldest and most popular detection method.
We won't go into detail here. We use a simpler method to judge

XML/HTML CodeCopy content to clipboard
  1. if("\v"=="v") {
  2.   
  3. alert("IE");
  4.   
  5. }else{
  6.   
  7. alert("NO");
  8.   
  9. }
  10.   

The problems we have encountered so far have been solved. Let's start writing code to test whether our ideas can be implemented.

The above brief analysis of html input and value change to add listening events is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

Original URL: http://www.web600.net/html/editor/JavaScript/201001131529.html

<<:  Tutorial on how to install and use Ceph distributed software under Linux

>>:  Measured image HTTP request

Recommend

Vue+webrtc (Tencent Cloud) practice of implementing live broadcast function

Table of contents 1. Live broadcast effect 2. Ste...

How to deploy Tencent Cloud Server from scratch

Since this is my first post, if there are any mis...

How to set up a shared folder on a vmware16 virtual machine

1. Set up a shared folder on the virtual machine:...

Detailed explanation of Linux index node inode

1. Introduction to inode To understand inode, we ...

The easiest way to make a program run automatically at startup in Linux

I collected a lot of them, but all ended in failu...

MYSQL subquery and nested query optimization example analysis

Check the top 100 highest scores in game history ...

How to use MySQL stress testing tools

1. MySQL's own stress testing tool - Mysqlsla...

Detailed explanation of the difference between tinyint and int in MySQL

Question: What is the difference between int(1) a...

IE8 uses multi-compatibility mode to display web pages normally

IE8 will have multiple compatibility modes . IE pl...

IE6 implements min-width

First of all, we know that this effect should be ...