📌  相关文章
📜  如何限制用户输入英语 - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:54.645000             🧑  作者: Mango

代码示例1
$(document).on("keypress", "input[type='text'] function (event) {
        return suppressNonEng(event);
    });

function suppressNonEng(EventKey) {
    var key = EventKey.which || EventKey.keyCode;
    if (key > 128) { sefAlert("Only English is allowed"); return false; }
    else { return true; }
}