溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

VUE v-model表單數(shù)據(jù)雙向綁定完整示例

發(fā)布時間:2020-08-20 06:32:13 來源:腳本之家 閱讀:183 作者:黎成訶月 欄目:web開發(fā)

本文實(shí)例講述了VUE v-model表單數(shù)據(jù)雙向綁定。分享給大家供大家參考,具體如下:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Vue v-model雙向綁定</title>
<script src="https://cdn.bootcss.com/vue/2.2.2/vue.min.js"></script>
</head>
<body>
<div id="app">
  <textarea v-model = "message" placeholer = '請?jiān)诖溯斎胛淖?></textarea>
  <span>{{message}}</span>
   </br>
  <input type="text" v-model="data.name"/>
  <span>姓名:{{data.name}}</span>
  </br>
  <input type="radio" id="boy" value="男" v-model="data.gender"/>
  <label for="boy">男</label>
  <input type="radio" id="girl" value="女" v-model="data.gender"/>
  <lable for="girl">女</lable>
  <span>{{data.gender}}</span>
  <br/>
  <input type="checkbox" id="item1" value="閱讀" v-model="data.interest"/>
  <lable for="item1">閱讀</lable>
  <input type="checkbox" id="item2" value="打球" v-model="data.interest"/>
  <lable for="item2">打球</lable>
  <input type="checkbox" id="item3" value="體操" v-model="data.interest"/>
  <lable for="checkbox">體操</lable>
  <br/>
  <span>{{data.interest}}</span>
  <select v-model="data.identity">
    <option value="java" selected>java</option>
    <option value="web">web</option>
    <option value="hr">hr</option>
  </select>
  <span>身份:{{data.identity}}</span>
  <!--select:用 v-for 渲染的動態(tài)選項(xiàng):-->
  <select v-model="selected">
    <option v-for="option in options" v-bind:value="option.value">
      {{ option.text }}
    </option>
  </select>
  <span>Selected: {{ selected }}</span>
</div>
<script>
  new Vue({
    el: '#app',
    data: {
      message: '6',
      data: {
        name: '',
        gender: '',
        interest: [],
        identity: ''
      },
      selected: 'A',
      options: [
        { text: 'One', value: 'A' },
        { text: 'Two', value: 'B' },
        { text: 'Three', value: 'C' }
      ]
    }
  })
</script>
</body>
</html>

這里使用在線HTML/CSS/JavaScript代碼運(yùn)行工具:http://tools.jb51.net/code/HtmlJsRun測試上述代碼,可得如下運(yùn)行結(jié)果:

VUE v-model表單數(shù)據(jù)雙向綁定完整示例

希望本文所述對大家vue.js程序設(shè)計(jì)有所幫助。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI