vue 如何做好表格处理?

首先做之前先得知道一些关于vue的语法吧?

v-model:表单值和数据的双向绑定

v-for: 渲染。语法:v-for=“(item,index)in list”

@click  绑定事件点击事件

.prevent :阻止事件默认跳转

删除:数组名.splice(index,删除个数)

上代码!

上代码!!

上代码!!!

<!DOCTYPE html>

<html>

  <head lang="en">

    <meta charset="UTF-8" />

    <title></title>

    <style>

      * {

        margin: 0;

        padding: 0;

      }

      a {

        text-decoration: none;

        color: #721c24;

      }

      h1 {

        text-align: center;

        color: #333;

        margin: 20px 0;

      }

      table {

        margin: 0 auto;

        width: 800px;

        border-collapse: collapse;

        color: #004085;

      }

      th {

        padding: 10px;

        background: #cfe5ff;

        font-size: 20px;

        font-weight: 400;

      }

      td,

      th {

        border: 1px solid #b8daff;

      }

      td {

        padding: 10px;

        color: #666;

        text-align: center;

        font-size: 16px;

      }

      tbody tr {

        background: #fff;

      }

      tbody tr:hover {

        background: #e1ecf8;

      }

      .info {

        width: 900px;

        margin: 50px auto;

        text-align: center;

      }

      .info input {

        width: 80px;

        height: 25px;

        outline: none;

        border-radius: 5px;

        border: 1px solid #b8daff;

        padding-left: 5px;

      }

      .info button {

        width: 60px;

        height: 25px;

        background-color: #004085;

        outline: none;

        border: 0;

        color: #fff;

        cursor: pointer;

        border-radius: 5px;

      }

      .info .age {

        width: 50px;

      }

    </style>

  </head>

  <body>

    <div id="app">

            <h1>表格(</h1>

            <form action="">

              <!-- 获取数据,v-model-->

              <div class="info">

                姓名:<input type="text" class="uname" v-model="formData.name" />

                年龄:<input type="text" class="age" v-model="formData.age"/>

                性别:

                <select name="gender" id="" class="gender" v-model="formData.sex">

                  <option value="男">男</option>

                  <option value="女">女</option>

                </select>

                薪资:<input type="text" class="salary" v-model="formData.salary"/>

                 就业城市:<select name="city" id="" class="city" v-model="formData.city"

                >

                  <option value="北京">北京</option>

                  <option value="上海">上海</option>

                  <option value="广州">广州</option>

                  <option value="深圳">深圳</option>

                  <option value="曹县">曹县</option>

                </select>

                <!-- prevent就是避免默认跳转 -->

                <button class="add" @click.prevent="doAdd">录入</button>

              </div>

            </form>

       

            <h1>就业榜</h1>

            <table>

              <thead>

                <tr>

                  <th>学号</th>

                  <th>姓名</th>

                  <th>年龄</th>

                  <th>性别</th>

                  <th>薪资</th>

                  <th>就业城市</th>

                  <th>操作</th>

                </tr>

              </thead>

              <tbody>

                <!-- 渲染列表  v-for="(item,index) in list" -->

                <tr v-for="(item,index) in list">

                  <td>{{index+1}}</td>

                  <td>{{item.name}}</td>

                  <td>{{item.age}}</td>

                  <td>{{item.sex}}</td>

                  <td>{{item.salary}}</td>

                  <td>{{item.city}}</td>

                  <td>

                    <!-- 句式:名字.splice(删掉index,删几个) -->

                    <a href="javascript:" class="delete" @click="list.splice(index,1)">删除</a>

                  </td>

                </tr>

              </tbody>

            </table>

    </div>

    <script src="./vue.js"></script>

    <script>

      /*

      vue核心思路:数据驱动

      (1)思考案例需要哪些数据

      表单:v-model 是设置+获取表单值的

      列表(ul、table等):v-for数组  v-for渲染数组的

      (3)vue页面的增删改查:数组的增删改查

      表格思路:

      1.使用v-model绑定表单数据

      2.点击录入:把表单数据添加到数组  v-for

      (1)表单按钮需要阻止默认跳转 :@click.prvent='doAdd'

      (2)给数组添加元素

      (3)表单数据清空

      3.数组增删改查处理

      删除元素:arr.solice(下标,数量)

      */

        const app = new Vue({

          // 挂载点  

            el:'#app',

            //1.表单数据

            data:{

                formData:{

                  name:'',

                  age:'',

                  sex:'男',

                  salary:'',

                  city:'深圳'

                },

                // 2.列表

                list:[]

            },

            // 事件方法

            methods:{

              // 录入

              doAdd(){

                // (1)表单数据添加到数组

              this.list.push(this.formData)

                // (2)清空表单数据

              this.formData={

                name:'',

                age:'',

                sex:'男',

                salary:'',

                city:'深圳'

              }

              }

            }

        })

    </script>

  </body>

</html>

效果图展示:::
 

(默认效果:)

(添加效果:)

(点击删除效果:)

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值