• vue中如何判断checkbox是否选中


    console.log(event.target.checked)

    例:

     例:

    实现:选中按钮激活,不选 input 加上disabled

    方法一:@click方法:

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <title>Document</title>
    </head>
    <body>
        <div id="app">
            <label for="ab1"><input type="checkbox" id="ab1"  @click = "checkbox()">我同意</label><br/>
            <button type ="button" :disabled = "!dis">注册</button>
    
        </div>
    </body>
    <script src="js/vue2.js"></script>
    <script type="text/javascript">
    var vm = new Vue({
        el:'#app',
        data:{
            dis:false
        },
        methods:{
            // 选中为true,未选中为false
            checkbox(){
                this.dis = event.target.checked
                console.log(event.target.checked)
            }
        }
    })
    </script>
    
    </html> 

    方法二:  v-model    ,v-model =“dis”的值就是checked   是否选中的值   等同于 event.target.checked

    <div id="app">
            <label for="ab2"><input type="checkbox" id="ab2" v-model="dis">我同意 {{dis}}</label><br/>
            <button type ="button" :disabled = "!dis">注册</button>
    </div>
    
    
    var vm = new Vue({
        el:'#app',
        data:{
            dis:false
        },
        methods:{
           
        }
    })

     

  • 相关阅读:
    数据结构(九)词典
    数据结构(八)高级搜索树
    电脑购买参数配置
    git命令
    Linux安装初始化
    电影TS、TC、BD版和HD版
    eclipse 自动生成json格式的toString()方法
    富文本编辑器-UEditor
    lucene教程--全文检索技术
    FileOperator 文件(夹)操作类
  • 原文地址:https://www.cnblogs.com/liubingyjui/p/12844307.html
Copyright © 2020-2023  润新知