键盘响应事件
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Event KeyBoard</title>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body>
<h1>Event KeyBoard</h1>
<div id="Vue-app">
<label for="">name</label>
<input type="text" v-on:keyup.enter="logName" >
<label for="">Age</label>
<input type="text" v-on:keyup.alt.enter="logAge" >
</div>
<script src="app.js"></script>
</body>
</html>
new Vue({
el: '#Vue-app',
data: {
name:'',
age: ''
},
methods: {
logName: function() {
console.log('You entered your name');
},
logAge: function() {
console.log('You entered your age');
}
}
})
记录