這篇“怎么在Vue中實現(xiàn)全選和反選”文章的知識點大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“怎么在Vue中實現(xiàn)全選和反選”文章吧。
站在用戶的角度思考問題,與客戶深入溝通,找到新林網(wǎng)站設(shè)計與新林網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗,讓設(shè)計與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:成都網(wǎng)站設(shè)計、成都做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣、申請域名、網(wǎng)絡(luò)空間、企業(yè)郵箱。業(yè)務(wù)覆蓋新林地區(qū)。
首先就是自己創(chuàng)建一個input,正在mx.txt的前方添加一個input:CheckBox。在v-model加上你每次創(chuàng)建出來的mx.check
最重點就在于forEach遍歷,出來的都是當(dāng)前的。
有些人不注意的一點,為什么data里面沒有check:[]這樣的出現(xiàn)。
data里的是實時監(jiān)控,你點一次自動將所有的check都變成了true。
<template> <div class="check"> <button @click="checkAll">全選</button> <br> <input type="text" v-model="txt" @keyup.enter="ck" /> <ul> <li v-for="(mx, index) in list" :key="index"> <input type="checkbox" v-model="mx.check" /> {{mx.txt}} </li> </ul> </div> </template>
<script> export default { data() { return { txt: "", list: [] } }, methods: { ck() { this.list.push({ txt: this.txt, check: false }) this.txt = "" }, checkAll() { this.list.forEach((mx) => { mx.check = !mx.check }) } } } </script>
<style lang="less"> .check { cursor: pointer; button { cursor: pointer; border: 0; padding: 10px 30px; background: #000; color: #fff; border-radius: 100px; margin-bottom: 10px; outline: none; } input { padding: 15px; width: 300px; border: 0; box-shadow: 0 0 15px #ccc; } ul { width: 300px; padding: 0; cursor: pointer; box-shadow: 0 0 15px #ccc; min-height: 300px; padding: 15px; list-style: none; li { cursor: pointer; margin-bottom: 12px; >input { padding: 0; width: auto; } } } } </style>
以上就是關(guān)于“怎么在Vue中實現(xiàn)全選和反選”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對大家有幫助,若想了解更多相關(guān)的知識內(nèi)容,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
網(wǎng)站標(biāo)題:怎么在Vue中實現(xiàn)全選和反選
分享URL:http://jinyejixie.com/article2/pppeic.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供全網(wǎng)營銷推廣、響應(yīng)式網(wǎng)站、商城網(wǎng)站、網(wǎng)站排名、ChatGPT、標(biāo)簽優(yōu)化
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)