HTML implements the function of detecting input completion

HTML implements the function of detecting input completion
  • Use "onInput(event)" to detect whether input is in progress
  • Use onporpertychange="onChange(event)" to detect whether the content has changed
  • Use onBlur="finnishInput(event)" to detect whether the focus is lost

You can first detect whether you are inputting and record the status. If you were inputting information last time and then lost focus, you can determine that the input is complete.

The HTML code is as follows:

<tr style="background-color:#FFFFFF">
    <th>Business trip location:</th>
    <td>
        <input class="form-control" onBlur="finnishInput(event)" "onInput(event)" onporpertychange="onChange(event)" id="travelLocationId" type="text" placeholder="travel location">
    </td>
</tr>

The JS code is as follows

var flag = 0;
function onInput(e){
  console.log("Inputing");
  flag = 1;
}

function finishInput(e) {
  if(1 == flag){
    console.log("InputOk");
    flag = 0;
  }
}

After testing, the function of judging whether the input is completed is realized and can be used repeatedly.

The above is the HTML implementation of the input completion detection function introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

<<:  MySQL SQL Optimization Tutorial: IN and RANGE Queries

>>:  Docker configuration Alibaba Cloud Container Service operation

Recommend

An article to help you learn CSS3 picture borders

Using the CSS3 border-image property, you can set...

A brief analysis of HTML space code

How much do you know about HTML? If you are learni...

Comparison between Redis and Memcache and how to choose

I've been using redis recently and I find it ...

Use JS to operate files (FileReader reads --node's fs)

Table of contents JS reads file FileReader docume...

Commonly used JavaScript array methods

Table of contents 1. filter() 2. forEach() 3. som...

How to use vw+rem for mobile layout

Are you still using rem flexible layout? Does it ...

JavaScript custom plug-in to implement tab switching function

This article shares the specific code of JavaScri...

How to use linux commands to convert and splice audio formats

Install FFmpeg flac eric@ray:~$ sudo apt install ...

How to solve the problem that mysql cannot be closed

Solution to mysql not closing: Right-click on the...

Explanation of the execution priority of mySQL keywords

As shown below: from table where condition group ...

About Zabbix custom monitoring items and triggers

Table of contents 1. Monitoring port Relationship...

Creating a Secondary Menu Using JavaScript

This article example shares the specific code of ...

How to use MySQL group by and order by together

Suppose there is a table: reward (reward table), ...