禁止中文输入法

方法一:禁止中文输入法

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

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

<input type="text" onpaste="return false" ondragenter="return false" oncontextmenu="return false;" style="ime-mode:disabled"/>
原文地址:https://www.cnblogs.com/gaoyinghui/p/4324024.html