js實(shí)現(xiàn)禁止中文輸入的方法

字號:


    方法一:禁止中文輸入法
    <input type="text">
    方法二:禁止黏貼,禁止拖拽,禁止中文輸入法!
    這種方法是最強(qiáng)的禁止 中文輸入
    <input type="text" onpaste="return false" ondragenter="return false" oncontextmenu="return false;"/>