11 Examples of Advanced Usage of Input Elements in Web Forms

11 Examples of Advanced Usage of Input Elements in Web Forms

1. Cancel the dotted box when the button is pressed <br />Add the attribute value hideFocus or HideFocus=true in the input
2. Read-only text box content <br />Add the attribute value readonly to input
3. Prevent the TEXT document from being cleared when going back (the style content can be used as a class reference)
<INPUT style=behavior:url(#default#savehistory); type=text id=oPersistInput>
4. The ENTER key moves the cursor to the next input box
<input onkeydown="if(event.keyCode==13) event.keyCode=9" >
5. Only Chinese (flashing)
<input onkeyup="value=value.replace(/[ -~]/g,'')" onkeydown="if(event.keyCode==13) event.keyCode=9">
6. Only numbers (flashing)
<input onkeyup="value=value.replace(/[^\d]/g,'') "onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\d]/g,''))">
7. Only numbers (no flashing)
<input style="ime-mode:disabled" onkeydown="if(event.keyCode==13) event.keyCode=9" onKeyPress="if ((event.keyCode<48 event.keyCode>57)) event.returnValue=false">
8. Only English and numbers can be entered (flashing)
<input onkeyup="value=value.replace(/[\W]/g,'')" onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\d]/g,''))">
9. Block input method
<input type="text" name="url" style="ime-mode:disabled" onkeydown="if(event.keyCode==13) event.keyCode=9">
10. Only numbers, decimal points, and minus signs (-) can be entered (no flashing)
<input onKeyPress="if (event.keyCode!=46 && event.keyCode!=45 && (event.keyCode<48 event.keyCode>57)) event.returnValue=false">
11. Only two decimal places or three decimal places can be entered (flashing)
<input maxlength=9 onkeyup="if(value.match(/^\d{3}$/)) value=value.replace(value,parseInt(value/10)) ;value=value.replace(/\.\d*\./g,'.')" onKeyPress="if((event.keyCode<48 event.keyCode>57) && event.keyCode!=46 && event.keyCode!=45 value.match(/^\d{3}$/) /\.\d{3}$/.test(value)) {event.returnValue=false}" id=text_kfxe name=text_kfxe>

<<:  Detailed explanation of the difference between MySQL normal index and unique index

>>:  CSS multi-level menu implementation code

Recommend

Comprehensive analysis of isolation levels in MySQL

When the database concurrently adds, deletes, and...

Detailed tutorial on installing Python 3.8.1 on Linux

This example takes the installation of Python 3.8...

How to install suPHP for PHP5 on CentOS 7 (Peng Ge)

By default, PHP on CentOS 7 runs as apache or nob...

Implementation of running springboot project with Docker

Introduction: The configuration of Docker running...

Do you know all 24 methods of JavaScript loop traversal?

Table of contents Preface 1. Array traversal meth...

Linux general java program startup script code example

Although the frequency of starting the shell is v...

Summary of the 10 most frequently asked questions in Linux interviews

Preface If you are going to interview for a Linux...

How to reference external CSS files and iconfont in WeChat applet wxss

cause The way to import external files into a min...

Zabbix3.4 method to monitor mongodb database status

Mongodb has a db.serverStatus() command, which ca...

The latest graphic tutorial of mysql 8.0.16 winx64 installation under win10

In order to download this database, it takes a lo...

Several ways to add timestamps in MySQL tables

Scenario: The data in a table needs to be synchro...

Implementation example of scan code payment in vue project (with demo)

Table of contents Demand background Thought Analy...

Detailed explanation of Nginx regular expressions

Nginx (engine x) is a high-performance HTTP and r...