欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vue.js 获取select中的value实例

程序员文章站 2022-07-09 17:48:51
如下所示:

如下所示:

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>document</title>
<script type="text/javascript" src="./vue.js"></script>
</head>
<body>
<label id="app">
<select v-model="selected" >
 <option v-for="option in options" v-bind:value="option.value">
 {{ option.text }}
 </option>
</select>
<span>selected: {{ selected }}</span>
</label>
<script>
new vue({
 el: '#app',
 data: {
 selected: 'a',
 options: [
  { text: 'one', value: 'a' },
  { text: 'two', value: 'b' },
  { text: 'three', value: 'c' }
 ]
 }
})
</script>
</body>
</html>

以上这篇vue.js 获取select中的value实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。