【vue】控制台中如何移除数组arr中的值?如何给数组arr中放值?

移除数组arr属性中的值:vm.arr.shift()
新增数组arr属性中的值:vm.arr.push(‘属性值’)

  1. 移除atguigu3样式后效果:
    在这里插入图片描述
  2. 向数组arr中添加样式值后效果:
    在这里插入图片描述

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>绑定样式</title>
    <!-- 引入vue.js -->
    <script type="text/javascript" src="../js/vue.js"></script>
</head>
<body>
    <style>
        .basic {
            width: 300px;
            height: 50px;
            border: 1px solid black;
        }
        .happy {
            border: 3px solid red;
            background-color: rgba(255, 255, 0, 0.644);
            background: linear-gradient(30deg, yellow, pink, orange, yellow);
        }
        .sad {
            border: 4px dashed rgb(2, 197, 2);
            background-color: skyblue;
        }
        .normal {
            background-color: #bfa;
        }
        .atguigu1 {
            background-color: yellowgreen;
        }
        .atguigu2 {
            font-size: 20px;
            text-shadow: 2px 2px 10px red;
        }
        .atguigu3 {
            border-radius: 20px;
        }
    </style>


    <!-- 准备一个容器 -->
    <div id="root">
        <!-- 绑定class样式--字符串写法,适用于:样式的类名不确定,需要动态指定 -->
        <div class="basic" :class="mood" @click="changeMood">{{name}}</div><br>

        <div class="basic" :class="arr">{{name}}</div>
    </div>

    <script type="text/javaScript">
        Vue.config.productionTip = false

        const vm = new Vue({
            el:'#root',
            data:{
                name:'尚硅谷',
                mood:'normal',
                arr:['atguigu1', 'atguigu2', 'atguigu3']
            },
            methods:{
                changeMood(){
                    // this.mood = 'happy'
                    // 需求1:点击后自动随机选择背景样式
                    // const arr = ['happy', 'sad', 'normal']
                    // 获取随机生成 0,1,2 三个数字中的一个
                    const index = Math.floor(Math.random()*3)
                    // 随机取出下标值对应的数组值
                    this.mood = arr[index]
                }
            }
        })
    </script>





</body>
</html>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

宋大米Pro

感谢小主大赏,留言可进互助群~

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值