String.fromCodePoint()在IE中不起作用,tab键在Firefox中不起作用

时间:2016-01-06 19:29:44

标签: javascript angularjs

我有这样的代码,在IE 10或Firefox 43中不起作用:

app.directive('limitChars', function () {
    return {
        restrict: 'A',
        link: function (_scope, _element) {
            var allowedChars = /[a-z0-9, ]/;

            _element.on("keypress", function (e) {
                var key = String.fromCodePoint(e.which).toLowerCase();

                if (!allowedChars.test(key) && e.which != 13 && e.which != 8) {
                    return false;
                }
            });
        }
    };
});

在IE 10中,我得到“对象不支持属性或方法fomCodePoint”错误。

在Firefox 43中,“tab”键无效。

在Chrome中,一切正常。

任何人都知道为什么?感谢。

更新

formCharCode()似乎现在在IE中运行。但是Tab键仍然无法在Firefox中使用。

1 个答案:

答案 0 :(得分:2)

同时使用e.keyCodee.which。以下适用于所有浏览器:

app.directive('limitChars', function(){
        return {
            restrict: 'A',
            link: function(_scope,_element) {
                var allowedChars = /[a-z0-9, ]/;

                _element.on("keypress",function(e){
                    var keyCode = e.keyCode || e.which;

                    var key = String.fromCharCode(keyCode).toLowerCase();

                    if (!allowedChars.test(key) && keyCode != 8 && keyCode != 9 && keyCode != 13 && keyCode != 16) {
                        return false;
                    }
                });
            }
        };
    });