常见的键盘事件

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <script>
        // keyup 鼠标弹起事件
        document.onkeyup = function() {
            console.log(1111);
        }
        // keydown鼠标按下事件

        document.onkeydown = function() {
            console.log(3333);//一直按着就会一直触发这个事件
        }


        document.onkeypress = function() {//不能识别功能键,
            console.log(444);
        }

        // keypress鼠标按下事件
    </script>
</body>
</html>

  

上一篇:中国乙二醇冷却器市场供需动态分析及前景趋势研究报告2022-2028年


下一篇:在el-dialog中无法正确获取DOM的问题