Vue2.0学习—键盘事件(三十三)

Posted 王同学要努力

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue2.0学习—键盘事件(三十三)相关的知识,希望对你有一定的参考价值。

【Vue2.0学习】—键盘事件(三十三)

<!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>
    <script src="../js/vue.js"></script>
    <style>
        #root 
            margin-top: 20px;
        
    </style>
</head>
<!-- 
    
 -->

<body>
    <div id="root">
        <h1>我叫name6</h1>
        <input type="text" placeholder="按下回车键提示输入" @keyup.enter="show">
        <h1>我叫name4</h1>
        <input type="text" placeholder="按下回车键提示输入" @keyup.esc="show">
        <h1>我叫name1</h1>
        <input type="text" placeholder="按下回车键提示输入" @keyup.delete="show">
        <h1>我叫name2</h1>
        <input type="text" placeholder="按下回车键提示输入" @keyup.space="show">
        <h1>我叫name3</h1>
        <input type="text" placeholder="按下回车键提示输入" @keydown.tab="show">
        <!-- @keydown.tab  tab键特殊 必须配合keydown使用-->

    </div>

    <script>
        const vm = new Vue(
            el: "#root",
            data: 
                name1: '张三',
                name2: '李四',
                name3: '小吴',
                name4: '小王',
                name5: '小李',
                name6: '小明'
            ,
            methods: 
                show(e) 

                    console.log(e.target.value);


                
            

        )
    </script>
</body>

</html>

以上是关于Vue2.0学习—键盘事件(三十三)的主要内容,如果未能解决你的问题,请参考以下文章

Vue2.0学习—Object.defineProperty(三十)

Vue2.0—键盘事件

Vue2.0学习—条件渲染(三十九)

Vue2.0学习—监视属性(三十五)

Vue2.0学习—理解数据代理(三十一)

Vue2.0学习—watch和computed对比(三十七)