Home > Web Front-end > JS Tutorial > body text

JavaScript controls input to only allow various specified contents to be entered_javascript skills

WBOY
Release: 2016-05-16 16:43:53
Original
1317 people have browsed it

1. Only numbers are allowed

<input name="username" type="text"
onkeyup="value=this.value.replace(/\D+/g,'')">
Copy after login
Copy after login

2. Only English letters, numbers and underscores are allowed to be entered (the following two methods are implemented)

<input name="username" type="text"
style="ime-mode:disabled">
<input name="username" type="text"
onkeyup="value=value.replace(/[^\w\.\/]/ig,'')">
Copy after login
Copy after login

3. Only English letters, numbers and =@# are allowed to be entered

<input name="username" type="text" onkeyup="value=value.replace(/[^\w=@#]|_/ig,'')">
Copy after login

4. Only Chinese characters are allowed to be entered

<input name="username" type="text"
onkeyup="value=value.replace(/[^\u4E00-\u9FA5]/g,'')">
Copy after login

1. Only numbers are allowed

<input name="username" type="text"
onkeyup="value=this.value.replace(/\D+/g,'')">
Copy after login
Copy after login

2. Only English letters, numbers and underscores are allowed to be entered (the following two methods are implemented)

<input name="username" type="text"
style="ime-mode:disabled">
<input name="username" type="text"
onkeyup="value=value.replace(/[^\w\.\/]/ig,'')">
Copy after login
Copy after login

3. Only English letters, numbers and =@# are allowed to be entered

<input name="username" type="text"
onkeyup="value=value.replace(/[^\w=@#]|_/ig,'')">
Copy after login

4. Only Chinese characters are allowed to be entered

<input name="username" type="text" onkeyup="value=value.replace(/[^\u4E00-\u9FA5]/g,'')">
Copy after login

Only numbers can be entered: "^[0-9]*$".
Only n-digit numbers can be entered: "^d{n}$".
Only numbers with at least n digits can be entered: "^d{n,}$".

Only m~n numbers can be entered:. "^d{m,n}$"
Only numbers starting with zero and non-zero can be entered: "^(0|[1-9][0-9]*)$".

Only positive real numbers with two decimal places can be entered: "^[0-9] (.[0-9]{2})?$".

Only positive real numbers with 1~3 decimal places can be entered: "^[0-9] (.[0-9]{1,3})?$".
Only non-zero positive integers can be entered: "^?[1-9][0-9]*$".

Only non-zero negative integers can be entered: "^-[1-9][]0-9"*$.
Only characters with a length of 3 can be entered: "^.{3}$".

Only a string consisting of 26 English letters can be entered: "^[A-Za-z] $".
Only a string consisting of 26 uppercase English letters can be entered: "^[A-Z] $".

Only a string consisting of 26 lowercase English letters can be entered: "^[a-z] $".
Only a string consisting of numbers and 26 English letters can be entered: "^[A-Za-z0-9] $".

You can only enter a string consisting of numbers, 26 English letters or underscores: "^w $".

Verify user password: "^[a-zA-Z]w{5,17}$" The correct format is: starting with a letter, the length is between 6 and 18, and can only contain characters, numbers and underscores.

Verify whether it contains characters such as ^%&',;=?$": "[^%&',;=?$x22] ".

Only Chinese characters can be entered: "^[u4e00-u9fa5]{0,}$"

Only numbers and decimal points can be entered, anti-paste:

<input type=""text" onkeyup="value=value.replace(/[^0-9.]/g,''),dxfqlld();" onpaste="value=value.replace(/[^0-9.]/g,'')" oncontextmenu="value=value.replace(/[^0-9.]/g,'')" />
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template