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! |
<<: MySQL SQL Optimization Tutorial: IN and RANGE Queries
>>: Docker configuration Alibaba Cloud Container Service operation
Using the CSS3 border-image property, you can set...
How much do you know about HTML? If you are learni...
I've been using redis recently and I find it ...
Table of contents JS reads file FileReader docume...
Table of contents 1. filter() 2. forEach() 3. som...
Are you still using rem flexible layout? Does it ...
This article shares the specific code of JavaScri...
Install FFmpeg flac eric@ray:~$ sudo apt install ...
Solution to mysql not closing: Right-click on the...
Table of contents JS Three Mountains Synchronous ...
As shown below: from table where condition group ...
Table of contents 1. Monitoring port Relationship...
Preface The concept of dark mode originated from ...
This article example shares the specific code of ...
Suppose there is a table: reward (reward table), ...