• vue2


    table标签的frame和rules属性,可以控制边框的显示。frame属性控制着表格最外围的四条边框的可见性,而 rules 则控制着表格内部边框的可见性。
    frame属性可取的值及含义如下:
    * void - 默认值。表示不显示表格最外围的边框。
    * box - 同时显示四条边框。
    * border - 同时显示四条边框。
    * above - 只显示顶部边框。
    * below - 只显示底部边框。
    * lhs - 只显示左侧边框。
    * rhs - 只显示右侧边框。
    * hsides - 只显示水平方向的两条边框。
    * vsides - 只显示垂直方面的两条边框。
    rules 属性可取的值有五个,分别是:
    * none - 默认值。无边框。
    * groups - 给表格加外边框。
    * rows - 为行加边框。
    * cols - 为列加边框。
    * all - 为所有行列(单元格)加边框
    

    先有一下成绩单数据
    scores = [
    { name: 'Bob', math: 97, chinese: 89, english: 67 },
    { name: 'Tom', math: 67, chinese: 52, english: 98 },
    { name: 'Jerry', math: 72, chinese: 87, english: 89 },
    { name: 'Ben', math: 92, chinese: 87, english: 59 },
    { name: 'Chan', math: 47, chinese: 85, english: 92 },
    ]
    用table表格标签渲染以上数据,表格第一列是学生总分排名,最后一列是学生总分;

    <!DOCTYPE html>
    <html lang="zh">
    <head>
        <meta charset="UTF-8">
        <title>1</title>
    </head>
    <body>
        <div id="app">
            <table border="1" style="margin: auto" rules="all">
                <tr>
                    <th>排名</th>
                    <th>姓名</th>
                    <th>数学</th>
                    <th>语文</th>
                    <th>英语</th>
                    <th>总分</th>
                </tr>
                <!--有几个人,就循环渲染几行-->
                <tr v-for="(score, i) in scores">
                    <td>{{ i + 1 }}</td>
                    <td v-for="v in score">{{v}}</td>
                </tr>
            </table>
        </div>
    </body>
    <script src="js/vue.js"></script>
    <script>
        `
        let scores = null;
        $.ajax({
            url:'',
            success(response) {
                scores = response.data
            }
        });
        `;
        // 模拟当前页面加载成功,从后台获取操作的数据
        let scores = [
            { name: 'Bob', math: 97, chinese: 89, english: 67 },
            { name: 'Tom', math: 67, chinese: 52, english: 98 },
            { name: 'Jerry', math: 72, chinese: 87, english: 89 },
            { name: 'Ben', math: 92, chinese: 87, english: 59 },
            { name: 'Chan', math: 47, chinese: 85, english: 92 },
        ];
        // 补充:for in遍历的是取值关键 | for of遍历的是值
        // 添加总分
        for (score of scores) {
            score.total = score.math + score.chinese + score.english;
        }
        // console.log(scores);
        // 按照总分排序
        for (let i=0; i<scores.length-1; i++) {
            for (let j=0; j<scores.length-1-i; j++) {
                if (scores[j].total < scores[j+1].total) {
                    let temp = scores[j];
                    scores[j] = scores[j+1];
                    scores[j+1] = temp;
                }
            }
        }
        console.log(scores);
    
        new Vue({
            el: '#app',
            data: {
                // 属性名与值为变量的变量名相同,可以简写省略值
                scores,
            }
        })
    </script>
    </html>
    

    还是采用上方相同的数据,采用相同的渲染规则,只渲染所有科目都及格了的学生。

    <!DOCTYPE html>
    <html lang="zh">
    <head>
        <meta charset="UTF-8">
        <title>2</title>
    </head>
    <body>
        <div id="app">
            <table border="1" style="margin: auto" rules="all">
                <tr>
                    <th>排名</th>
                    <th>姓名</th>
                    <th>数学</th>
                    <th>语文</th>
                    <th>英语</th>
                    <th>总分</th>
                </tr>
                <!--有几个人,就循环渲染几行-->
                <tr v-for="(score, i) in scores" v-if="score.math>=60&&score.chinese>=60&&score.english>=60">
                    <td>{{ i + 1 }}</td>
                    <td v-for="v in score">{{v}}</td>
                </tr>
            </table>
        </div>
    </body>
    <script src="js/vue.js"></script>
    <script>
        `
        let scores = null;
        $.ajax({
            url:'',
            success(response) {
                scores = response.data
            }
        });
        `;
        // 模拟当前页面加载成功,从后台获取操作的数据
        let scores = [
            { name: 'Bob', math: 97, chinese: 89, english: 67 },
            { name: 'Tom', math: 67, chinese: 52, english: 98 },
            { name: 'Jerry', math: 72, chinese: 87, english: 89 },
            { name: 'Ben', math: 92, chinese: 87, english: 59 },
            { name: 'Chan', math: 47, chinese: 85, english: 92 },
        ];
        // 补充:for in遍历的是取值关键 | for of遍历的是值
        // 添加总分
        for (score of scores) {
            score.total = score.math + score.chinese + score.english;
        }
        // console.log(scores);
        // 按照总分排序
        for (let i=0; i<scores.length-1; i++) {
            for (let j=0; j<scores.length-1-i; j++) {
                if (scores[j].total < scores[j+1].total) {
                    let temp = scores[j];
                    scores[j] = scores[j+1];
                    scores[j+1] = temp;
                }
            }
        }
        console.log(scores);
    
        new Vue({
            el: '#app',
            data: {
                // 属性名与值为变量的变量名相同,可以简写省略值
                scores,
            }
        })
    </script>
    </html>
    

    还是采用上方相同的数据,添加筛选规则:
    i)有三个按钮:语文、数学、外语,点击谁谁高亮,且当前筛选规则采用哪门学科
    ii)两个输入框,【】~【】,前面天最小分数,后面填最大分数,全部设置完毕后,表格的数据会被更新只渲染满足所有条件的结果
    举例:点击语文,输入【86】~【87】,那就只会渲染Jerry和Ben两条数据

    <!DOCTYPE html>
    <html lang="zh">
    <head>
        <meta charset="UTF-8">
        <title>3</title>
        <style>
            .active {
                background-color: pink;
            }
        </style>
    </head>
    <body>
        <div id="app">
            <div style=" 400px; margin: 20px auto">
                <button @click="subject = 'math'" :class="{active: subject === 'math'}">数学</button>
                <button @click="subject = 'chinese'" :class="{active: subject === 'chinese'}">语文</button>
                <button @click="subject = 'english'" :class="{active: subject === 'english'}">英语</button>
                <input type="number" min="0" max="100" v-model="min">
                ~
                <input type="number" min="0" max="100" v-model="max">
            </div>
    
            <table width="400" border="1" style="margin: auto" rules="all">
                <tr>
                    <th>排名</th>
                    <th>姓名</th>
                    <th>数学</th>
                    <th>语文</th>
                    <th>英语</th>
                    <th>总分</th>
                </tr>
                <tbody v-if="subject === 'math'">
                    <tr v-for="(score, i) in scores" v-if="score.math>=min && score.math<=max || (!min || !max)">
                        <td>{{ i + 1 }}</td>
                        <td v-for="v in score">{{v}}</td>
                    </tr>
                </tbody>
                <tbody v-else-if="subject === 'chinese'">
                    <tr v-for="(score, i) in scores" v-if="score.chinese>=min && score.chinese<=max || (!min || !max)">
                        <td>{{ i + 1 }}</td>
                        <td v-for="v in score">{{v}}</td>
                    </tr>
                </tbody>
                <tbody v-else-if="subject === 'english'">
                    <tr v-for="(score, i) in scores" v-if="score.english>=min && score.english<=max || (!min || !max)">
                        <td>{{ i + 1 }}</td>
                        <td v-for="v in score">{{v}}</td>
                    </tr>
                </tbody>
                <tbody v-else>
                    <tr v-for="(score, i) in scores">
                        <td>{{ i + 1 }}</td>
                        <td v-for="v in score">{{v}}</td>
                    </tr>
                </tbody>
            </table>
        </div>
    </body>
    <script src="js/vue.js"></script>
    <script>
        `
        let scores = null;
        $.ajax({
            url:'',
            success(response) {
                scores = response.data
            }
        });
        `;
        // 模拟当前页面加载成功,从后台获取操作的数据
        let scores = [
            { name: 'Bob', math: 97, chinese: 89, english: 67 },
            { name: 'Tom', math: 67, chinese: 52, english: 98 },
            { name: 'Jerry', math: 72, chinese: 87, english: 89 },
            { name: 'Ben', math: 92, chinese: 87, english: 59 },
            { name: 'Chan', math: 47, chinese: 85, english: 92 },
        ];
        // 补充:for in遍历的是取值关键 | for of遍历的是值
        // 添加总分
        for (score of scores) {
            score.total = score.math + score.chinese + score.english;
        }
        // console.log(scores);
        // 按照总分排序
        for (let i=0; i<scores.length-1; i++) {
            for (let j=0; j<scores.length-1-i; j++) {
                if (scores[j].total < scores[j+1].total) {
                    let temp = scores[j];
                    scores[j] = scores[j+1];
                    scores[j+1] = temp;
                }
            }
        }
        console.log(scores);
    
        new Vue({
            el: '#app',
            data: {
                // 属性名与值为变量的变量名相同,可以简写省略值
                scores,
                min: '',
                max: '',
                subject: '',
            }
        })
    </script>
    </html>
    
  • 相关阅读:
    Python3 CGI编程实现教程
    SSL密钥协商过程分析
    浏览器同源策略理解
    Python3+selenium 报错处理:“selenium.common.exceptions.NoAlertPresentException: Message: No alert is active”
    Python3 try-except、raise和assert解析
    计算机视觉常见技术(待理解)
    中国大学MOOC-陈越、何钦铭-数据结构-2017春
    Coursera机器学习+deeplearning.ai+斯坦福CS231n
    总结一些机器视觉库
    git rebase 多分支操作
  • 原文地址:https://www.cnblogs.com/zhangchaocoming/p/12059381.html
Copyright © 2020-2023  润新知