Posted in Javascript onJanuary 14, 2015
方法一:禁止中文输入法
<input type="text" style="ime-mode:disabled">
方法二:禁止黏贴,禁止拖拽,禁止中文输入法!
这种方法是最强的禁止 中文输入
<input type="text" onpaste="return false" ondragenter="return false" oncontextmenu="return false;" style="ime-mode:disabled"/>
js实现禁止中文输入的方法
- Author -
hebedich声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@