JS入门第二节

这篇具有很好参考价值的文章主要介绍了JS入门第二节。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

JS入门第二节

<!--1.循环输出1~100岁-->
<script>
        for(i = 1; i <= 100; i++){
            console.log(i + "岁");
        }
</script>
<!--计算1~100所有的偶数和-->
<script>
        let sum = 0;
        for(i = 1; i <= 100; i++){
            if(i % 2 === 0){
                sum += i;
            }
        }
        console.log(sum);
</script>
<!--打印五个小星星-->
<script>
        for(i = 0; i < 5; i++){
            document.write("*");
        }
</script>
<!--循环打印数组元素-->
<script>
        let hero = ['马超', '赵云', '张飞', '关羽', '黄忠'];
        for(i = 0; i < hero.length; i++){
            console.log(hero[i]);
        }
</script>

JS入门第二节

<script>
        let x = prompt('请输入行数:');
        let y = prompt('请输入列数')
        for(i = 0; i < x; i++){
            for(j = 0; j < y; j++){
               document.write("*");
            }
            document.write(`<br/>`);
        }
</script>

JS入门第二节

<script>
        let x = prompt('请输入行数:');
        let y = prompt('请输入列数')
        for(i = 0; i < x; i++){
            for(j = 0; j <= i; j++){
               document.write("*");
            }
            document.write(`<br/>`);
        }
</script>

JS入门第二节

<!DOCTYPE>
<html>
<head>
    <style>
        span {
          display: inline-block;
          width: 100px;
          padding: 5px 10px;
          border: 1px solid pink;
          margin: 2px;
          border-radius: 5px;
          box-shadow: 2px 2px 2px rgba(255, 192, 203, .4);
          background-color: rgba(255, 192, 203, .1);
          text-align: center;
          color: hotpink;
        }
      </style>
</head>
<body>
    <script>
        for(i = 1; i <= 9; i++){
            for(j = 1; j <= i; j++){
               document.write(`<span>${i} X ${j} = ${i*j}</span>`);
            }
            document.write(`<br/>`);
        }
    </script>
</body>
</html>

JS入门第二节

<script>
        let arr = new Array(2, 6, 1, 7, 4);
        let sum = 0;
        let avg = 0;
        for(i = 0; i < arr.length; i++){
            sum += arr[i];
        }    
        avg = sum / arr.length;
        console.log(`sum = ${sum}, avg = ${avg}`);
</script>

JS入门第二节

<script>
        let arr = [2, 6, 1, 77, 52, 25, 7];
        let max = Number.MIN_VALUE;
        let min = Number.MAX_VALUE;
        for(i = 0; i < arr.length; i++){
            // 三元表达式和条件判断效果相同
            max = arr[i] > max ? arr[i] : max;
            if(arr[i] < min){
                min = arr[i];
            }
        }
        console.log('最大值为: ' + max);
        console.log('最小值为: ' + min);     
</script>

JS入门第二节

<script>
        let arr = [2, 0, 6, 1, 77, 0, 52, 0, 25, 7];
        // 数组添加元素首先需要初始化,使用new关键字或者赋值空数组 []
        let newArr = new Array();
        for(i = 0; i < arr.length; i++){
            if(arr[i] >= 10){
                newArr.push(arr[i]);
            }
        }     
        console.log(newArr);
</script>

JS入门第二节

<script>
        let arr = [2, 0, 6, 1, 77, 0, 52, 0, 25, 7];
        let newArr = [];
        for(i = 0; i < arr.length; i++){
            if(arr[i] !== 0){
                newArr.unshift(arr[i]);
            }
        }     
        console.log(newArr);
</script>

JS入门第二节

<!DOCTYPE>
<html>
<head>
    <style>
        * {
            margin: 0;
            padding: 0;
        }

        .box {
            display: flex;
            width: 700px;
            height: 300px;
            border-left: 1px solid pink;
            border-bottom: 1px solid pink;
            margin: 50px auto;
            justify-content: space-around;
            align-items: flex-end;
            text-align: center;
        }

        .box>div {
            display: flex;
            width: 50px;
            background-color: pink;
            flex-direction: column;
            justify-content: space-between;
        }

        .box div span {

            margin-top: -20px;
        }

        .box div h4 {
            margin-bottom: -35px;
            width: 70px;
            margin-left: -10px;
        }
    </style>
</head>
<body>
    <script>
        // 定义一个数组,循环四次存储数据
        let arr = new Array();
        for(i = 0; i < 4; i++){
            arr.push(prompt(`请输入第${i + 1}季度的数据:`));
        }
        // 盒子开始
        document.write(`<div class="box">`);            
        // 盒子中间
        for(let i = 0; i < arr.length; i++){
            document.write(`
                <div style="height: ${arr[i]}px;">
                    <span>${arr[i]}</span>
                    <h4>第${i + 1}季度</h4>
                </div>
            `);
        }
        // 盒子末尾
        document.write(`</div>`);
    </script>   
</body>
</html>

JS入门第二节

<script>
        let arr = [4, 2, 5, 1, 3];
        arr.sort(function(a, b){
            return a - b;
        });
        console.log('升序排序: ' + arr);
        arr.sort(function(a, b){
            return b - a;
        });
        console.log('降序排序: ' + arr);
</script>

JS入门第二节

<script>
        function sayHello(){
            document.write('hi~');
        }
        // 这里我没有给打印的乘法表做样式
        function printMultiplicationTable(){
            for(let i = 1; i <= 9; i++){
                for(let j = 1; j <= 9; j++){
                    document.write(`${i} X ${j} = ${i * j}` + '\t');
                }
                document.write(`<br />`);
            }
        }
        sayHello();
        document.write(`<br />`);
        printMultiplicationTable();    
</script>

JS入门第二节

<script>
        // 计算两个数的和
        function calNum(){
            let n = 10;
            let m = 56;
            return n + m;
        }
        // 计算 1- 100 之间所有数的和
        function calNum2(){
            let sum = 0;
            for(let i = 1; i <= 100; i++){
                sum += i;
            }
            return sum;
        }
        // 调用两个函数,控制台打印
        console.log(calNum());
        console.log(calNum2());
        // 缺陷就是不能求指定元素的和,也就是不能传参,复用的范围比较小   
</script>   

JS入门第二节

<script>
        function calNum(num1, num2){
            document.write(num1 + num2);
        }
        calNum(100, 899);  
</script>  

JS入门第二节

<script>
        function calScore(score){
            let sum = 0;
            for(let i = 0; i < score.length; i++){
                sum += score[i];
            }
            document.write('学生的总分为: ' + sum);
        }
        let grade = [90, 90, 90];
        calScore(grade);
</script>  

JS入门第二节

<script>
        function maxNum(num1, num2){
            return num1 > num2 ? num1 : num2;
        }
        function max(arr){
            let maxNumber = Number.MIN_VALUE;
            for(let num in arr){
                maxNumber = num > maxNumber ? num : maxNumber;
            }
            return maxNumber;
        }
        function min(arr){
            let minNumber = Number.MAX_VALUE;
            for(let num in arr){
                minNumber = num < minNumber ? num : minNumber;
            }
            return minNumber;
        }

        let arr = [1, 2, 3];
        document.write(maxNum(1, 3))
        document.write(max(arr));
        document.write(min(arr));
</script> 

JS入门第二节

<script>
        function calculateTime(second){
            let h = parseInt(second / 60 / 60 % 24) ;
            let m = parseInt(second / 60 % 60);
            let s = parseInt(second  % 60);
            // 不足两位需要拼接 0
            h = h < 10 ? '0' + h : h;
            m = m < 10 ? '0' + m : m;
            s = s < 10 ? '0' + s : s;

            document.write(`转化结果为: ${h}时 ${m}分 ${s}秒`);
        }
        calculateTime(prompt('输入总的秒数:'));    
</script> 

JS入门第二节

<script>
        let goods = {
            name : '小米小米10 青春版',
            num : '100012816024',
            weight : '0.55kg',
            address: '中国大陆'
        } 
        console.log(goods);  
</script>

JS入门第二节

<script>
        let goods = {
            name : '小米小米10 青春版',
            num : '100012816024',
            weight : '0.55kg',
            address: '中国大陆'
        }
        goods.name = '小米10PLUS';
        goods.color = '粉色'
        for(let e in goods){
            document.write(e + ':' +goods[e]);
            document.write(`<br />`)
        }
        console.log(goods);  
</script>

JS入门第二节

<script>
        // 数组套对象
        let students = [
            {name : '小明', age : 18, gender : '男', hometown : '河北省'},
            {name : '小红', age : 19, gender : '女', hometown : '河北省'},
            {name : '小刚', age : 17, gender : '男', hometown : '山西省'},
            {name : '小丽', age : 18, gender : '女', hometown : '山东省'},
        ];
        for(let i = 0; i < students.length; i++){
            console.log(`${students[i].name} ${students[i].age} ${students[i].gender} ${students[i].hometown}`)
        }
</script>

JS入门第二节

<!DOCTYPE>
<html>
<head>
    <style>
        table {
            /*表格宽度,文本居中*/
            width : 600px;
            text-align: center;
        }
        table,
        th,
        td {
            border: 1px solid #ccc;
            border-collapse: collapse;
        }
        caption {
            font-size: 18px;
            margin-bottom: 10px;
            font-weight: 700;
        }
        tr {
            height: 40px;
            cursor: pointer;
        }
        table tr:nth-child(1) {
            background-color: #ddd;
        }
        table tr:not(:first-child):hover {
            background-color: #eee;
        }
    </style>    
</head>
<body>
    
    <table>
        <caption>学生信息表</caption>
        <tbody>
            <tr>
                <th>序号</th>
                <th>姓名</th>
                <th>性别</th>
                <th>年龄</th>
                <th>家乡</th>   
            </tr>        
            <script>
                let students = [
                    {name : '小明', age : 18, gender : '男', hometown : '河北省'},
                    {name : '小红', age : 19, gender : '女', hometown : '河北省'},
                    {name : '小刚', age : 17, gender : '男', hometown : '山西省'},
                    {name : '小丽', age : 18, gender : '女', hometown : '山东省'},
                ];
                for(let i = 0; i < students.length; i++){
                    document.write(`
                        <tr>
                            <td>${i + 1}</td>
                            <td>${students[i].name}</td>                    
                            <td>${students[i].age}</td>
                            <td>${students[i].gender}</td>
                            <td>${students[i].hometown}</td>           
                        </tr>                   
                    `);
                }
            </script>                              
        </tbody>
    </table>       
</body>
</html>

JS入门第二节

<script>
        let hero = ['赵云', '黄忠', '关羽', '张飞', '马超', '刘备', '曹操'];
        // 索引 0 - 6 去生成随机数
        let idx = Math.floor(Math.random() * (6 + 1));
        document.write(hero[idx]);    
</script>

JS入门第二节

<script>
        let hero = ['赵云', '黄忠', '关羽', '张飞', '马超', '刘备', '曹操'];
        // 索引 0 - 6 去生成随机数
        let idx = Math.floor(Math.random() * hero.length);
        document.write(hero[idx]);    
        hero.splice(idx, 1);
</script>

JS入门第二节

<script>
        let random = Math.floor(Math.random() * (10 + 1));
        while(true){
            let num = prompt('请输入您选择的数字: ');
            if(num == random){
                alert('猜对了');
                break;
            }else if(num > random){
                alert('猜大了');
            }else{
                alert('猜小了');
            }
        }
</script>

JS入门第二节

    <script>
        // 准备十六进制的数组
        let arr = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'];
        function getRandomColor(param){
            if(!param){
                let r = Math.floor(Math.random() * 256);
                let g = Math.floor(Math.random() * 256);
                let b = Math.floor(Math.random() * 256);

                return `rgb(${r}, ${g}, ${b})`;
            }else {
                let str = '#';
                for(let i = 0; i < 6; i++){
                    let idx = Math.floor(Math.random() * arr.length);
                    str += arr[idx];
                }
                return str;    
            }
        }
        console.log(getRandomColor());
        console.log(getRandomColor(true));
        console.log(getRandomColor(false));
</script>

JS入门第二节

<html lang="en"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>学车在线首页</title>
    <link rel="stylesheet" href="style.css">
    <style>

    </style>
</head>

<body>

    <!-- 4. box核心内容区域开始 -->
    <div class="box w">
        <div class="box-hd">
            <h3>精品推荐</h3>
            <a href="#">查看全部</a>
        </div>
        <div class="box-bd">
            <ul class="clearfix">
                <!-- <li>
                    <a href="#">
                        <img src="course01.png" alt="">
                        <h4>
                            Think PHP 5.0 博客系统实战项目演练
                        </h4>
                        <div class="info">
                            <span>高级</span> • <span>1125</span>人在学习
                        </div>
                    </a>
                </li> -->
                <script>
                    let data = [
                        {
                            src: 'course01.png',
                            title: 'Think PHP 5.0 博客系统实战项目演练',
                            num: 1125
                        },
                        {
                            src: 'course02.png',
                            title: 'Android 网络动态图片加载实战',
                            num: 357
                        },
                        {
                            src: 'course03.png',
                            title: 'Angular2大前端商城实战项目演练',
                            num: 22250
                        },
                        {
                            src: 'course04.png',
                            title: 'AndroidAPP实战项目演练',
                            num: 389
                        },
                        {
                            src: 'course05.png',
                            title: 'UGUI源码深度分析案例',
                            num: 124
                        },
                        {
                            src: 'course06.png',
                            title: 'Kami2首页界面切换效果实战演练',
                            num: 432
                        },
                        {
                            src: 'course07.png',
                            title: 'UNITY 从入门到精通实战案例',
                            num: 888
                        },
                        {
                            src: 'course08.png',
                            title: 'Cocos 深度学习你不会错过的实战',
                            num: 590
                        },
                        {
                            src: 'course04.png',
                            title: '自动添加的模块',
                            num: 1000
                        }
                    ]

                    for (let i = 0; i < data.length; i++) {
                        document.write(`
                        <li>
                            <a href="#">
                                <img src=${data[i].src} title="${data[i].title}">
                                <h4>
                                   ${data[i].title}
                                </h4>
                                <div class="info">
                                    <span>高级</span> • <span>${data[i].num}</span>人在学习
                                </div>
                            </a>
                        </li>
                      `)
                    }
                </script>
                        <li>
                            <a href="#">
                                <img src="course01.png" title="Think PHP 5.0 博客系统实战项目演练">
                                <h4>
                                   Think PHP 5.0 博客系统实战项目演练
                                </h4>
                                <div class="info">
                                    <span>高级</span> • <span>1125</span>人在学习
                                </div>
                            </a>
                        </li>
                      
                        <li>
                            <a href="#">
                                <img src="course02.png" title="Android 网络动态图片加载实战">
                                <h4>
                                   Android 网络动态图片加载实战
                                </h4>
                                <div class="info">
                                    <span>高级</span> • <span>357</span>人在学习
                                </div>
                            </a>
                        </li>
                      
                        <li>
                            <a href="#">
                                <img src="course03.png" title="Angular2大前端商城实战项目演练">
                                <h4>
                                   Angular2大前端商城实战项目演练
                                </h4>
                                <div class="info">
                                    <span>高级</span> • <span>22250</span>人在学习
                                </div>
                            </a>
                        </li>
                      
                        <li>
                            <a href="#">
                                <img src="course04.png" title="AndroidAPP实战项目演练">
                                <h4>
                                   AndroidAPP实战项目演练
                                </h4>
                                <div class="info">
                                    <span>高级</span> • <span>389</span>人在学习
                                </div>
                            </a>
                        </li>
                      
                        <li>
                            <a href="#">
                                <img src="course05.png" title="UGUI源码深度分析案例">
                                <h4>
                                   UGUI源码深度分析案例
                                </h4>
                                <div class="info">
                                    <span>高级</span> • <span>124</span>人在学习
                                </div>
                            </a>
                        </li>
                      
                        <li>
                            <a href="#">
                                <img src="course06.png" title="Kami2首页界面切换效果实战演练">
                                <h4>
                                   Kami2首页界面切换效果实战演练
                                </h4>
                                <div class="info">
                                    <span>高级</span> • <span>432</span>人在学习
                                </div>
                            </a>
                        </li>
                      
                        <li>
                            <a href="#">
                                <img src="course07.png" title="UNITY 从入门到精通实战案例">
                                <h4>
                                   UNITY 从入门到精通实战案例
                                </h4>
                                <div class="info">
                                    <span>高级</span> • <span>888</span>人在学习
                                </div>
                            </a>
                        </li>
                      
                        <li>
                            <a href="#">
                                <img src="course08.png" title="Cocos 深度学习你不会错过的实战">
                                <h4>
                                   Cocos 深度学习你不会错过的实战
                                </h4>
                                <div class="info">
                                    <span>高级</span> • <span>590</span>人在学习
                                </div>
                            </a>
                        </li>
                      
                        <li>
                            <a href="#">
                                <img src="course04.png" title="自动添加的模块">
                                <h4>
                                   自动添加的模块
                                </h4>
                                <div class="info">
                                    <span>高级</span> • <span>1000</span>人在学习
                                </div>
                            </a>
                        </li>
                      
            </ul>
        </div>
    </div>
</body></html>
* {
    margin: 0;
    padding: 0;
}
.w {
    width: 1200px;
    margin: auto;
}
body {
    background-color: #f3f5f7;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
.clearfix:before,.clearfix:after {
    content:"";
    display:table; 
  }
  .clearfix:after {
    clear:both;
  }
  .clearfix {
     *zoom:1;
  }   
 

.box {
    margin-top: 30px;
}
.box-hd {
    height: 45px;
}
.box-hd h3 {
    float: left;
    font-size: 20px;
    color: #494949;
}
.box-hd a {
    float: right;
    font-size: 12px;
    color: #a5a5a5;
    margin-top: 10px;
    margin-right: 30px;
}
/* 把li 的父亲ul 修改的足够宽一行能装开5个盒子就不会换行了 */
.box-bd ul {
    width: 1225px;
}
.box-bd ul li {
    position: relative;
    top: 0;
    float: left;
    width: 228px;
    height: 270px;
    background-color: #fff;
    margin-right: 15px;
    margin-bottom: 15px;
    transition: all .3s;
   
}
.box-bd ul li a {
    display: block;
}
.box-bd ul li:hover {
    top: -8px;
    box-shadow: 0 15px 30px rgb(0 0 0 / 10%);
}
.box-bd ul li img {
    width: 100%;
}
.box-bd ul li h4 {
    margin: 20px 20px 20px 25px;
    font-size: 14px;
    color: #050505;
    font-weight: 400;
}
.box-bd .info {
    margin: 0 20px 0 25px;
    font-size: 12px;
    color: #999;
}
.box-bd .info span {
    color: #ff7c2d;
}

JS入门第二节
JS入门第二节
JS入门第二节
JS入门第二节
JS入门第二节
JS入门第二节
JS入门第二节
JS入门第二节文章来源地址https://www.toymoban.com/news/detail-657262.html

到了这里,关于JS入门第二节的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 【Git 入门教程】第二节、Git基础使用

    Git是一个分布式版本控制系统,它可以帮助开发者更好地管理和维护代码。在本文中,我们将介绍Git的最基本操作,如安装Git、初始化仓库、添加文件、提交代码、查看记录等。 1.下载 要使用Git,首先需要在计算机上安装Git。本文以Windows 10 为环境进行讲解。 官网地址为:

    2023年04月26日
    浏览(42)
  • 《Pytorch新手入门》第二节-动手搭建神经网络

    参考《深度学习框架PyTorch:入门与实践_陈云(著)》 代码链接:https://github.com/chenyuntc/pytorch-book 神经网络是机器学习中的一种模型,是一种模仿动物神经网络行为特征,进行分布式并行信息处理的算法数学模型。这种网络依靠系统的复杂程度,通过调整内部大量节点之间相互

    2024年02月05日
    浏览(42)
  • 【Python零基础学习入门篇②】——第二节:Python的常用语句

    ⬇️⬇️⬇️⬇️⬇️⬇️ ⭐⭐⭐Hello,大家好呀我是陈童学哦,一个普通大一在校生,请大家多多关照呀嘿嘿😁😊😘 🌟🌟🌟 技术这条路固然很艰辛,但既已选择,该当坚毅地走下去,加油! 🌤️PUA: ” 你所看到的惊艳都曾平庸历练 **“**🚀🚀🚀 🍉🍉🍉 最后让我

    2024年02月04日
    浏览(38)
  • Layui快速入门之第二节布局容器(固定宽度与完整宽度)

    目录 一:固定宽度 二: 完整宽度              将栅格放入一个带有  class=\\\"layui-container\\\"  的特定容器中,以便在小屏幕以上的设备中固定宽度,让列可控(两侧有留白效果) 测试效果:            不固定容器宽度,将栅格或其它元素放入一个带有  class=\\\"layui-fluid\\\" 的容器中

    2024年02月09日
    浏览(51)
  • 第二节:基础入门-Web 应用&架构搭建&漏洞&HTTP 数据包&代理服务器

    基础入门-Web 应用架构搭建漏洞HTTP 数据包代理服务器 #网站搭建前置知识 域名,子域名,DNS,HTTP/HTTPS,证书等 购买一台服务器,填完信息之后,会有两个内外网地址,这两个地址就是内部地址和公网地址 得到公网地址后可以用xshell或远程桌面管理连接这台服务器,这里我们

    2024年02月19日
    浏览(41)
  • 语音识别入门第二节:语音信号处理及特征提取

    目录 数字信号处理基础 基础知识 傅里叶分析 常用特征提取 特征提取流程 Fbank MFCC 模拟信号到数字信号转化(ADC) :在科学和工程中,遇到的大多数信号都是连续的模拟信号,而计算机只能处理离散的信号,因此,必须对这些连续的模拟信号进行转化,通过采样和量化,转

    2024年02月10日
    浏览(42)
  • for循环的输出控制(输出1-100中的奇数、偶数、倍数以及公倍数)

    一、输出1-100中所有的奇数: i = 1 while i = 100:     if i%2 == 1:         print(i)     i += 1   法二: for i in range(1,101):     if i%2 == 1:         print(i)   法三: for i in range(1,101,2):     print(i)     二、输出1-100中所有的偶数: for i in range(1,101):     if i % 2 == 0:         print(i)   三、

    2024年02月08日
    浏览(37)
  • 第二章(第二节):无穷小量和函数

    若 lim f(x) = 0 , 则称函数 f(x) 当 x → x 0 时是无穷小量,简称: 无穷小 。      x→ x 0 定理1. 有限多个 无穷小量的代数和仍是无穷小量 定理2. 有限多个 无穷小量的积也是无穷小量 定理3.常数与无穷小量的积也是无穷小量 定理4.有界变量与无穷小量的积是无穷小量 当 x→

    2024年02月08日
    浏览(49)
  • 关于js中for...in循环对象时,输出key值顺序混乱问题

    当循环纯数字索引对象时,循环key值是正确的 当对象变为复杂对象时,输出的key就变得复杂 ES6之前,循环对象常见做法是使用:for…in。但是for…in循环的问题在于它会遍历原型链中的属性,所以需要使用hasOwnProperty执行检查属性是否属于该对象。 ES6之后,我们对于对象的循

    2024年02月14日
    浏览(39)
  • 第二节 LwIP简介

    本专栏使用的是LwIP 2.1.2版本 ,官方下载链接:http://savannah.nongnu.org/projects/lwip/。 本专栏以LwIP 2. 1.2 为主要对象进行讲解,后续中出现的LwIP 如果没有特殊声明,均指2.1.2 版本。此时的LwIP 2. 1.2 为最新版本,可能当这本书写完的时候,LwIP 又被更新了,对于学习而言,大家其实

    2024年02月03日
    浏览(39)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包