Posted in Javascript onSeptember 05, 2018
如下所示:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Vue.js小demo</title> <style> .static{ width: 100px; height: 60px; margin:30px auto; display: inline-block; cursor: pointer; } .class-a{ background: lightpink; } .class-b{ background: #eee; } </style> </head> <body> <div id="content"> <span class="static" v-bind:class="{'class-a':isA,'class-b':!isA}" @click="toggle"></span> </div> </body> <script src="https://cdn.bootcss.com/vue/2.2.6/vue.js"></script> <script> var vm=new Vue({ el:"#content", data:function(){ return { isA:false }; }, methods:{ toggle:function(){ this.isA=!this.isA; } } }); </script> </html>
以上这篇vuejs点击class变化的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。
vuejs点击class变化的实例
- Author -
lucky芬声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@