• vue获取当前对对象


     <!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8">
        <title>vue 点击当前元素添加class 去掉兄弟的class</title>
        <script src="../js/vue.js"></script>
    </head>
    <style type="text/css">
        ul li {cursor: pointer;}
        .blue {color: #2175bc;}
    </style>
    <body>
        <div id="app">
          <ul>
            <li v-for="(todo, index) in todos" v-on:click="addClass(index,$event)" v-bind:class="{ blue:index==current}">
                {{ todo.text }}
            </li>
        </ul>
    </div>
    <script>
    new Vue({
        el: '#app',
            data: {
            current:0,
                todos: [
                { text: '选项一' },
                { text: '选项二' },
                { text: '选项三' }
            ]
        },
        methods:{
            addClass:function(index,event){
                this.current=index;
                 
           //获取点击对象     
               var el = event.currentTarget;
               alert("当前对象的内容:"+el.innerHTML);
            }
        }
    })
    </script>
    </body>
    <html> 
  • 相关阅读:
    Eureka的使用
    自定义类加载器
    继承
    Active Objects模式
    Future设计模式
    mysql备份与还原
    多生产者多消费者(第一种方式),基于synchronized,wait,notifyAll
    自己实现阻塞队列(基于数组)
    linux定时任务每隔5分钟向文本追加一行
    自己实现CountDownLatch
  • 原文地址:https://www.cnblogs.com/supereast/p/10700193.html
Copyright © 2020-2023  润新知