Greasy Fork

handleKey

快捷键处理函数

目前为 2019-02-06 提交的版本。查看 最新版本

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.greasyfork.icu/scripts/375077/668421/handleKey.js

var handleKey = function(a,b,c) {
    var d = zdElement.filter(function (t) {
        if (t.hasAttribute && t.hasAttribute('accesskey') && t.getAttribute('accesskey') == a ||
            t.classList.contains(b)) {
            if (t.offsetParent !== null) {
                if (!t.classList.contains(b)) {
                    t.classList.add(b);
                    t.removeAttribute('accesskey', '*');
                }
                c.Array.prototype.slice.call(zdElement.indexOf(t));
                return t;
            }
        }
    });
return d;
}