首页 > 代码库 > input 字符限制

input 字符限制

1,文本框只能输入数字代码(小数点也不能输入):

onkeyup="this.value=http://www.mamicode.com/this.value.replace(/D/g,‘‘)" onafterpaste="this.value=http://www.mamicode.com/this.value.replace(/D/g,‘‘)"

2,只能输入数字,能输小数点.

<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=http://www.mamicode.com/‘‘;}">

4,只能输入字母和汉字

<input onkeyup="value=http://www.mamicode.com/value.replace(/[/d]/g,‘‘)"onbeforepaste="clipboardData.setData(‘text‘,clipboardData.getData(‘text‘).replace(/[\d]/g,‘‘))" maxlength=10 name="Numbers">

 

input 字符限制