首页 > 语言 > JavaScript > 正文

js实现禁止中文输入的方法

2024-05-06 16:14:28
字体:
来源:转载
供稿:网友
这篇文章主要介绍了js实现禁止中文输入的方法,需要的朋友可以参考下
 

方法一:禁止中文输入法

<input type="text"  style="ime-mode:disabled">

方法二:禁止黏贴,禁止拖拽,禁止中文输入法!

这种方法是最强的禁止 中文输入

<input type="text" onpaste="return false" ondragenter="return false" oncontextmenu="return false;" style="ime-mode:disabled"/>


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选