Vue2基础篇-09-键盘事件

1. demo

DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title> 键盘事件title>
    <script type="text/javascript" src="../vue.js">script>
head>
<body>
    <div id="root">
        <input type="text" placeholder="按下回车提示输入" @keyup="showInfo">
    div>
    <script text="text/javascript">
        new Vue({
            el: "#root",
            methods: {
                showInfo(e) {
                    console.log(e.key, e.keyCode)
                    alert("hello")
                },
            },
        })
    script>
body>
html>

2. 小总结


你可能感兴趣的:(vue.js,前端,javascript)