您好,登錄后才能下訂單哦!
本文實例為大家分享了vue實現表單錄入的具體代碼,供大家參考,具體內容如下
最終效果:
代碼:
<template> <div id="app"> <!--第一部分--> <fieldset> <legend>學生錄入系統</legend> <div> <span>姓名:</span> <input type="text" placeholder="請輸入姓名" v-model="newStudent.name"> </div> <div> <span>年齡:</span> <input type="text" placeholder="請輸入年齡" v-model="newStudent.age"> </div> <div> <span>性別:</span> <select v-model="newStudent.sex"> <option value="男">男</option> <option value="女">女</option> </select> </div> <div> <span>手機:</span> <input type="text" placeholder="請輸入手機號碼" v-model="newStudent.phone"> </div> <button @click="createNewStudent()">創建新用戶</button> </fieldset> <!--第二部分--> <table> <thead> <tr> <td>姓名</td> <td>性別</td> <td>年齡</td> <td>手機</td> <td>刪除</td> </tr> </thead> <tbody> <tr v-for="(p, index) in persons"> <td>{{p.name}}</td> <td>{{p.sex}}</td> <td>{{p.age}}</td> <td>{{p.phone}}</td> <td> <button @click="deleteStudentMsg(index)">刪除</button> </td> </tr> </tbody> </table> </div> </template> <script> export default { name: "todolist2", data(){ return{ persons: [ {name: '張三', age: 20, sex: '男', phone: '18932323232'}, {name: '李四', age: 30, sex: '男', phone: '18921212122'}, {name: '王五', age: 20, sex: '男', phone: '18932223232'}, {name: '趙六', age: 25, sex: '女', phone: '18932322232'}, ], newStudent: {name: '', age: 0, sex: '男', phone: ''} } }, methods: { // 創建一條新紀錄 createNewStudent(){ // 姓名不能為空 if(this.newStudent.name === ''){ alert('姓名不能為空'); return; } // 年齡不能小于0 if(this.newStudent.age <= 0){ alert('請輸入正確的年齡'); return; } // 手機號碼 if(this.newStudent.phone === ''){ alert('手機號碼不正確'); return; } // 往數組中添加一條新紀錄 this.persons.unshift(this.newStudent); // 清空數據 this.newStudent = {name: '', age: 0, sex: '男', phone: ''} }, // 刪除一條學生紀錄 deleteStudentMsg(index){ this.persons.splice(index,1); } }, } </script> <style scoped> #app{ margin: 50px auto; width: 600px; } fieldset{ border: 1px solid orangered; margin-bottom: 20px; } fieldset input{ width: 200px; height: 30px; margin: 10px 0; } table{ width: 600px; border: 2px solid orangered; text-align: center; } thead{ background-color: orangered; } </style>
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。