加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ch06.html 831 Bytes
一键复制 编辑 原始数据 按行查看 历史
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="js/vue.js"></script>
</head>
<body>
<a href="index.html">返回</a>
<div class="app">
<h2>测试键盘事件 </h2>
<input placeholder="按回车提示输入" @keyup.回车="show"/>
<!-- exact, enter,esc,delete,space,tab,up,down,left,right-->
</div>
<script>
Vue.config.productionTip=false //关闭生产状态提示
//自定义别名
Vue.config.keyCodes.回车 = 13
const x=new Vue({
data:function (){
return{
name:"老杨"
}
},
methods:{
show(event){
console.log(event.target.value,event.key,event.keyCode)
}
}
})
x.$mount(".app")//挂载方式
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化