js实现禁止中文输入的方法
发布时间:2016-12-30 来源:查字典编辑
摘要:方法一:禁止中文输入法方法二:禁止黏贴,禁止拖拽,禁止中文输入法!这种方法是最强的禁止中文输入
方法一:禁止中文输入法
<input type="text">
方法二:禁止黏贴,禁止拖拽,禁止中文输入法!
这种方法是最强的禁止 中文输入
<input type="text" onpaste="return false" ondragenter="return false" oncontextmenu="return false;"/>