當(dāng)前位置:
首頁 >
验证码 禁止输入中文
發(fā)布時(shí)間:2025/3/21
61
豆豆
生活随笔
收集整理的這篇文章主要介紹了
验证码 禁止输入中文
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
方法一:禁止中文輸入法
<input type="text" style="ime-mode:disabled">
方法二:禁止黏貼,禁止拖拽,禁止中文輸入法!
這種方法是最強(qiáng)的禁止 中文輸入
<input type="text" οnpaste="return false" οndragenter="return false" οncοntextmenu="return false;" style="ime-mode:disabled"/>
?
獲取鍵盤按下值
function keyUp(e) {
var currKey = 0, e = e || event;
currKey = e.keyCode || e.which || e.charCode;
var keyName = String.fromCharCode(currKey);
//alert("按鍵碼: " + currKey + " 字符: " + keyName);
}
document.onkeyup = keyUp;
轉(zhuǎn)載于:https://www.cnblogs.com/louby/p/4958419.html
總結(jié)
以上是生活随笔為你收集整理的验证码 禁止输入中文的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: android学习笔记Fragment的
- 下一篇: webstorm基础使用总结