2024年12月07日 建站教程
如何利用html5
语法禁止input
文本输入,或者控制文字输入?下面web建站小编给大家详细介绍一下具体实现代码!
1、input禁止文本输入
//readonly <input type="text" value="" readonly="readonly"> //disabled <input type="text" value="" disabled="disabled"> //maxlength <input type="text" value="" maxlength="0"> //onfocus <input type="text" value="" onfocus="this.blur();">
2、input只允许输入数字
<input class="inputs" type="number" placeholder="请输入11位数字" oninput="if(value.length>11)value=value.slice(0,11)" /> <input type="text" placeholder="请输入您的手机号" oninput = "value=value.replace(/[^\d]/g,'')" maxlength="11">
3、input只允许输入中文
<input onkeyup="value=value.replace(/[^\u4E00-\u9FA5]/g,'')" onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\u4E00-\u9FA5]/g,''))">
本文链接:http://so.lmcjl.com/news/19124/