第10节事件绑定(处理)

第10节事件绑定(处理)

click  单击;  dblclick  双击 ; $event  : 原始DOM事件

效果图:

第10节事件绑定(处理)_第1张图片

 

 代码:

DOCTYPE html>
<html lang="en" xmlns:v-bind="http://www.w3.org/1999/xhtml" xmlns:v-on="http://www.w3.org/1999/xhtml">
<head>
    <meta charset="UTF-8">
    <title>title>
    <link type="text/css" rel="stylesheet" href=" "/>
    <style type="text/css">
        * {
            margin: 0;
            padding: 0;
        }
    style>
    <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js">script>
head>
<body>
<div id="one">
    <button v-on:click="counter +=1">数值:{{ counter }}button> <br/>
    
    <button v-on:dblclick="greet('abc',$event)">greetbutton>
div>
<script type="text/javascript">
    var vm = new Vue({
        el: '#one',
        data: {
            counter: 0,
            name: 'vue'
        },
        methods:{
            greet: function(x,b){
                alert(x+b);
                console.log(b);
            }
        }
    })
script>
body>
html>

 

posted on 2019-09-23 21:35  人生与戏 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/FlyingLiao/p/11575023.html

你可能感兴趣的:(第10节事件绑定(处理))