ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

Vue 表单操作

2021-08-02 21:34:18  阅读:161  来源: 互联网

标签:Vue console log form height 操作 表单 select occupation


表单数据不能用插值表达式

统一使用v-model,不用v-text,v-once,v-bind等

互斥的radio 或 同组checkbox 绑定同一个数据对象

select和option组 在select中绑定对象

单选的数据对象是单个值,
当select的multiple属性为true(多选),数据对象是数组

<html lang="en"><head>
  <meta charset="UTF-8">
  <title>Document</title>
  <style type="text/css">
  
  form div {
    height: 40px;
    line-height: 40px;
  }
  form div:nth-child(4) {
    height: auto;
  }
  form div span:first-child {
    display: inline-block;
    width: 100px;
  }
  </style>
</head>
<body>
  <div id="app">
  <form action="http://itcast.cn">
  <div>
  <span>姓名:</span>
  <span><input type="text"></span>
  </div>
  <div><span>性别:</span> <span><input type="radio" id="male" value="1"> <label for="male">男</label>
  <input type="radio" id="female" value="2">
  <label for="female">女</label></span></div>
  <div><span>爱好:</span>
  <input type="checkbox" id="ball" value="1"> <label for="ball">篮球</label> <input type="checkbox" id="sing" value="2"> <label for="sing">唱歌</label> <input type="checkbox" id="code" value="3"> <label for="code">写代码</label>
  </div>
  <div><span>职业:</span>
  <select multiple="multiple"><option value="0">请选择职业...</option>
  <option value="1">教师</option>
  <option value="2">软件工程师</option>
  <option value="3">律师</option></select>
  </div>
  <div><span>个人简介:</span>
  <textarea></textarea>
  </div>
  <div><input type="submit" value="提交"></div></form></div>
  <script type="text/javascript" src="js/vue.js"></script>
  <script type="text/javascript">
    /*
      表单基本操作
    */
    var vm = new Vue({
      el: '#app',
      data: {
        uname: 'lisi',
        gender: 2,
        hobby: ['2','3'],
        // occupation: 3
        occupation: ['2','3'],
        desc: 'nihao'
      },
      methods: {
        handle: function(){
          // console.log(this.uname)
          // console.log(this.gender)
          // console.log(this.hobby.toString())
          // console.log(this.occupation)
          console.log(this.desc)

        }
      }
    });
  </script>


</body></html>

标签:Vue,console,log,form,height,操作,表单,select,occupation
来源: https://blog.csdn.net/m0_49288919/article/details/119333970

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有