• vue.js表单提交


    <!DOCTYPE html> 
    <html lang="en"> 
        <head> 
            <meta charset="UTF-8"> 
            <title>helloform_Vue</title> 
            <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
            <script src="./vue.js"></script> 
        </head> 
        <body> 
        <div class="hello"> 
            <ul> 
                <form @submit.prevent="submit"> 
                    <input type="text" name="name" v-model="inputtext.name"> 
                    <input type="password" name="password" v-model="inputtext.password"> 
                    <input type="submit" value="提交"> 
                </form> 
            </ul> 
        </div> 
        <script> 
            var vm = new Vue({ 
                el: '.hello', 
                data: { 
                     
                    inputtext:{} 
                }, 
                methods: { 
                    submit: function() { 
                        console.log(this.inputtext); 
                    } 
                }, 
            }) 
        </script> 
     
        </body> 
    </html> 

  • 相关阅读:
    Linux防火墙--iptables学习
    LVS持久化
    LVS管理工具--ipvsadm
    Linux负载均衡--LVS(IPVS)
    一步步学习python
    驱动工程师需要的技能
    红外图像盲元补偿matlab实现源码与效果验证
    红外图像非均匀矫正——两点矫正
    夏日炎炎 python写个天气预报
    解决OV系列摄像头寄存器读数据无法收到的问题
  • 原文地址:https://www.cnblogs.com/gerry/p/7717737.html
Copyright © 2020-2023  润新知