|
Vue官方文档
https://cn.vuejs.org/v2/guide...- <div v-bind:class="[activeClass, errorClass]"></div>
- 可以简写成
- <div :class="[activeClass, errorClass]"></div>
复制代码 class绑定
- <!--
- * @Author: [you name]
- * @Date: 2021-10-08 15:15:52
- * @LastEditors: [you name]
- * @LastEditTime: 2021-10-08 22:46:18
- * @Description:
- -->
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <script src="https://cdn.bootcdn.net/ajax/libs/vue/2.6.13/vue.js"></script>
- <style>
- /* 点击前的样式 */
- .class1 {
- background-color: #fff;
- color: #333;
- }
- /* 点击之后的样式 */
- .class2 {
- background-color: #f52819;
- color: #fff;
- }
- /* 给按钮设置样式 */
- button {
- width: 80px;
- height: 40px;
- border-radius: 5px;
- border: 2px solid rgb(179, 167, 167);
- background-color: #fff;
- }
- </style>
- </head>
- <body>
- <div id="app">
- <!-- 分别给按钮设置点击事件 -->
- <button @click='handler1' :class="[isYes1? 'class1' : 'class2']">按钮1</button>
- <button @click='handler2' :class="[isYes2? 'class1' : 'class2']">按钮2</button>
- <button @click='handler3' :class="[isYes3? 'class1' : 'class2']">按钮3</button>
- </div>
- <script>
- // 第二种方法
- let vm = new Vue({
- el:'#app',
- data:{
- isYes1:true,
- isYes2:true,
- isYes3:true,
- },
- methods:{
- handler1(){
- this.isYes1 = false,
- this.isYes2 = true,
- this.isYes3 = true,
- console.log('第一个点击事件');
- },
- handler2(){
- this.isYes2 = false,
- this.isYes1 = true,
- this.isYes3 = true,
- console.log('第二个点击事件');
- },
- handler3(){
- this.isYes3 = false,
- this.isYes2 = true,
- this.isYes1 = true,
- console.log('第三个点击事件');
- },
- }
- })
- </script>
- </body>
- </html>
复制代码 style绑定
- <!--
- * @Author: [you name]
- * @Date: 2021-10-08 15:15:52
- * @LastEditors: [you name]
- * @LastEditTime: 2021-10-08 22:54:40
- * @Description:
- -->
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <script src="https://cdn.bootcdn.net/ajax/libs/vue/2.6.13/vue.js"></script>
- <style>
- /* 给按钮设置样式 */
- button {
- width: 80px;
- height: 40px;
- border-radius: 5px;
- border: 2px solid rgb(179, 167, 167);
- background-color: #fff;
- }
- </style>
- </head>
- <body>
- <div id="app">
- <!-- style绑定,这里是表达式结果类型为字符串,为展示点击按钮改变样式,使用的是三目运算,
- 在第一步中设置了一个可用于判断的数据,如果该数据值和按钮内容一样的话,则会触发点击事件,
- 该style样式设置为要改变的样式,即data中设置的styCss样式 -->
- <button :style='isActive =="按钮1" ? styCss : ""' @click='changeHandler'>按钮1</button>
- <button :style='isActive =="按钮2" ? styCss : ""' @click='changeHandler'>按钮2</button>
- <button :style='isActive =="按钮3" ? styCss : ""' @click='changeHandler'>按钮3</button>
- </div>
- <script>
- let vm = new Vue({
- el: '#app',
- data: {
- // 设置一个数据来进行判断,其初始值设为空字符串,就会显示原始样式
- isActive: '',
- // 在数据模型中设置经点击后要变换的样式,这里声明一个对象,用在按钮的绑定上,点击后切换的样式
- styCss: {
- background: 'red',
- color: 'white'
- }
- },
- methods: {
- // 为点击事件实现三按钮之间的互斥效果,即点击一个按钮,该按钮的样式改变,
- //其他的不变,点击另一个时,前一个按钮的样式还原,当前按钮样式改变,
- //那么就需要在点击方法中添加将目标源元素的文本值赋予需要进行判断的数据时,
- //当点击的按钮的内容和判断的条件一样时,成功触发该点击事件,实现切换并且改变样式的效果。
- changeHandler(event) {
- this.isActive = event.target.innerText
- }
- }
- })
- </script>
- </body>
- </html>
复制代码 以上就是Vue--分别运用class绑定和style绑定,通过点击实现样式的切换的详细内容,更多关于Vue-运用class style绑定点击样式切换的资料请关注脚本之家其它相关文章!
来源:https://www.jb51.net/javascript/2920020iy.htm
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作! |
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有账号?立即注册
x
|