vuejs實現全選功能

全選功能

開發說明

  1. 項目使用 vuejs 實現
  2. 項目提供兩種方式實現全選功能,並附上源碼,共參考

方式一

方式一,徹底發揮了 vuejs 的特性,使用了 computed 實現了對 單選按鈕的實時監控。vue

<div id="app">
    <div class="box">
        <div class="title">
            <label><input type="checkbox" v-model="status">全選</label>
        </div>
        <ul>
            <li v-for="item,index of list"><label>
                <input type="checkbox" v-model="item.checked">{{item.title}}</label>
            </li>
        </ul>
    </div>
</div>

var list = [
    {
        title : '數據一',
        checked : false,
    },{
        title : '數據二',
        checked : true,
    },{
        title : '數據三',
        checked : true,
    },{
        title : '數據四',
        checked : true,
    },{
        title : '數據五',
        checked : true,
}];

var vm = new Vue({
    el : '#app',
    data:{
        list
    },
    computed:{
        status:{
            get(){
                return this.list.filter( item => item.checked ).length === this.list.length
            },
            set( value ){
                this.list.map(function( item ){
                    item.checked = value;
                    return item;
                });
            }
        }
    }
});

方式二

方式二使用普通的事件監聽方式處理數據狀態app

<div id="app">
    <div class="box">
        <div class="title"><label>
        <input type="checkbox" 
            v-model="status" 
            @change="allCheck">全選</label></div>
        <ul>
            <li v-for="item,index of list">
                <label><input type="checkbox" 
                v-model="item.checked" 
                @change="singleCheck">{{item.title}}</label></li>
        </ul>
    </div>
</div>
var list = [
    {
        title : '數據一',
        checked : false,
    },{
        title : '數據二',
        checked : true,
    },{
        title : '數據三',
        checked : true,
    },{
        title : '數據四',
        checked : true,
    },{
        title : '數據五',
        checked : true,
}];

var vm = new Vue({
    el : '#app',
    data : {
        list,
        status : this.list.filter( item => item.checked ).length === this.list.length ? true : false
    },
    methods : {
        allCheck(){
            this.list.map(function( item ){
                item.checked = this.status;
                return item;
            }.bind(this));
        },
        singleCheck(){
            this.status = this.list.filter( item => item.checked ).length === this.list.length ? true : false
        }
    }
});

說明在方式二中使用了事件監聽函數,使用了change,也可使用 click,使用click事件時,低版本的vuejs存在 bug,高版本中 bug 修復,bug 存在於,在雙向綁定狀態改變時 使用click數據狀態後滯後。函數

相關文章
相關標籤/搜索