方法一:禁止中文輸入法
<input type="text" style="ime-mode:disabled">
方法二:禁止黏貼,禁止拖拽,禁止中文輸入法!
這種方法是最強的禁止 中文輸入
<input type="text" onpaste="return false" ondragenter="return false" oncontextmenu="return false;" style="ime-mode:disabled"/>