当用户第一次按下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();
}
});