IE 11打印屏幕问题

时间:2016-05-30 11:53:22

标签: jquery events internet-explorer-11

当用户第一次按下Print Screen(keyCode 44)时,页面加载IE 11不会触发事件。但是按下其他按钮后它工作正常。

var target = isIE8 ? $(document) : $window;
target.on("keyup keydown keypress", function (e) {
    if (e.keyCode === 44) { // 44 -> PrintScreen button code
        e.preventDefault();
        e.stopImmediatePropagation();
    }
});

0 个答案:

没有答案