6.vue鍵盤事件以及鍵值事件修飾符
1.js檔案:
//在使用vue之前必須例項化vue物件
new Vue({
/*el:指element 需要獲取的元素,一定是html中根容器元素
以後所有的操作均是在這個根容器中進行操作
*/
el:"#vue-app",
/*
data:用於資料的儲存,用來寫屬性
以key-value的值進行儲存
*/
data:{
},
/**
* 使用method來儲存方法,
* 使用this獲取當前容器的內容
*/
methods: {
logName:function(){
alert("你正在輸入名字");
},
logAge: function () {
alert("你正在輸入名年齡");
}
}
})
2.html內容:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>index.html</title>
<!-- 用於線上引用vue.js -->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<!-- 引用css檔案 -->
<link rel="stylesheet" href="../css/style.css">
<script src="http://code.jquery.com/jquery-1.4.1.min.js"></script>
</head>
<body>
<!--vue-app就是我們的根容器,vue均是對vue操作-->
<div id="vue-app">
<h1>鍵盤事件</h1>
<label for="name">姓名</label>
<input type="text" id="name" name="name" @keyup="logName()">
<label for="age">年齡</label>
<input type="text" id="age" name="age" @keyup="logAge()">
<hr/>
<label for="name">姓名</label>
<!--用於監聽鍵盤事件,但是由於有.enter,所以只有在觸發enter鍵的時候才會觸發-->
<input type="text" id="name" name="name" @keyup.enter="logName()">
<label for="age">年齡</label>
<!--用於監聽鍵盤事件,但是由於有.alt.enter,所以只有在觸發alt+enter鍵的時候才會觸發-->
<input type="text" id="age" name="age" @keyup.alt.enter="logAge()">
</div>
<script src="../js/app.js"></script>
</body>
</html>