程序中用到快捷键功能,用alt+d表示删除,ie6下可以,但到ie11后,alt+d不能掉到js方法。
下面是html测试
按其它键能打出log,按alt+d不能进入方法。求解决。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
测试ie11下,alt+d无效
<script type="text/javascript">
document.onkeydown = function(e){
if (window.event.keyCode==18) {
window.event.returnValue=false;
return false;
}
console.log(window.event);
window.event.cancelBubble=true;
}
</script>
</body>
</html>