通过imeMode禁用键盘只能输入数字

var obj = document.getElementById('y');
var arr = [48,49,50,51,52,53,54,55,56,57];//数字对应的键码
obj.onkeydown = function(e){
if($.inArray(e.keyCode,arr)==-1){
//obj.style.imeMode = "disabled";

e.preventDefault();

}

imeMode有四种形式,分别是:

active 代表输入法为中文
inactive 代表输入法为英文
auto 代表打开输入法 (默认)
disable 代表关闭输入法

原文地址:https://www.cnblogs.com/toward-the-sun/p/4749433.html