Only Chinese can be entered
<input type="text" onkeyup="this.value=this.value.replace(/[^\u4e00-\u9fa5]/g,'')">
Only English can be entered
<input type="text" onkeyup="this.value=this.value.replace(/[^a-zA-Z]/g,'')">
The text box can only enter numeric codes (the decimal point is also Cannot enter)
<input onkeyup="this.value=this.value.replace(/\D/g,'')" onafterpaste="this.value=this.value.replace(/\D/g,'')">
Only numbers can be entered, decimal points can be entered
方法一:<input onkeyup="if(isNaN(value))execCommand('undo')" onafterpaste="if(isNaN(value))execCommand('undo')"> 方法二:<input name=txt1 onchange="if(/\D/.test(this.value)){alert('只能输入数字');this.value='';}"> 方法三:<input onkeyup="this.value=this.value.replace(/[^\d.]/g,'')" onafterpaste="this.value=this.value.replace(/[^\d.]/g,'')" >
Only numbers and English can be entered
<input onKeyUp="value=value.replace(/[^\d|chun]/g,'')">
Only letters and Chinese can be entered
<input onkeyup="value=value.replace(/[\d]/g,'') "onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[\d]/g,''))" maxlength=10 name="Numbers">
Only letters and numbers can be entered
<input onkeyup="value=value.replace(/[^\w\.\/]/ig,'')">
<input type="text" size="20" onkeyup="this.value=this.value.replace(/[^\w_]/g,'');">
You can enter uppercase and lowercase letters and numbers. Underline
##
<input type="text" size="20" onkeyup="this.value=this.value.replace(/[^\d-]/g,'')" onafterpaste="this.value=this.value.replace(/[^\d-]/g,'')">
. This allows you to enter numbers, and the middle line (phone number)
<input type="text" size="20" onkeyup="this.value=this.value.replace(/[^a-z0-9_]/g,'');">
This can input lowercase letters and numbers, underline
<input type="text" onkeyup="value=value.replace(/[^\d.]/g,'')">
This can input numbers and dots
min, max and stepAttributes Used for inputs containing numbers and dates Type constraints. The min attribute specifies the minimum value allowed for the input field.
The max attribute specifies the maximum value allowed for the input field.
The step attribute specifies the legal number interval for the input field
The above is the detailed content of Example of how to control input format in html. For more information, please follow other related articles on the PHP Chinese website!