vue radio單選框,獲取當前項(每一項)的value值操作
https://www.jb51.net/article/195312.htm
前言
本文使用了lable關聯選中,實際使用中如果不需要,直接將循環語句 v-for 寫在 input標簽上就可以
1、使用v-for循環的radio單選框
01)需要注意的是,這是使用的是 change 事件,而不是 click 點擊事件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<template>
<div>
<label v-
for
=
"(item, index) in radioData"
:key=
"index"
>
<input
type=
"radio"
v-model=
"radioVal"
:value=
"item.value"
@change=
"getRadioVal"
/>
{{ item.value }}
</label>
</div>
</template>
<script>
export
default
{
data() {
return
{
radioData: [
{ value:
'全部'
},
{ value:
'部分'
},
{ value:
'零散'
}
],
radioVal:
'全部'
// 用於設置默認選中項
};
},
methods: {
getRadioVal() {
console.log(
this
.radioVal);
}
}
};
</script>
|
2、不使用v-for循環的radio單選框
01)需要注意的是,這是使用的是 change 事件,而不是 click 點擊事件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<template>
<div>
<label><input v-model=
"radioVal"
type=
"radio"
value=
"全部"
@change=
"getRadioVal"
>全部</label>
<label><input v-model=
"radioVal"
type=
"radio"
value=
"部分"
@change=
"getRadioVal"
>部分</label>
<label><input v-model=
"radioVal"
type=
"radio"
value=
"零散"
@change=
"getRadioVal"
>零散</label>
</div>
</template>
<script>
export
default
{
data() {
return
{
radioVal:
'全部'
// 用於設置默認選中項
};
},
methods: {
getRadioVal() {
console.log(
this
.radioVal);
}
}
};
</script>
|
點擊每一項獲得當前項的value值,使用v-for 和不使用v-for 實現的效果是一樣的
這里就不分開寫效果圖了
如果本篇文章對你有幫助的話,很高興能夠幫助上你。
補充知識:vue綁定單選框(radio)和復選框(CheckBox)
html部分
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<
div
style
=
"width:500px;margin:50px auto;display:flex;flex-direction:column;"
>
<
div
style
=
"font-weight:600;font-size:18px"
>問卷調查</
div
>
<
div
v-for
=
"(item,index) in question"
:key
=
"index"
style
=
"padding-top:10px"
>
<
div
style
=
"margin-bottom:10px"
>{{item.title}}</
div
>
<
div
v-if
=
"item.sex"
style
=
"display:flex;align-items:center;"
>
<
div
v-for
=
"(item2,index2) in item.sex"
:key
=
"index2"
@
click
=
"chooseSex(item2)"
style
=
"margin-right:20px"
>
<
input
type
=
"radio"
:value
=
"item2"
v-model
=
"radio2"
> <
span
> {{item2}}</
span
>
</
div
>
</
div
>
<
div
v-if
=
"item.item"
style
=
"display:flex;align-items:center;"
>
<
div
v-for
=
"(item3,index3) in item.item"
:key
=
"index3"
@
click
=
"chooseHobbied(item3)"
style
=
"margin-right:20px"
>
<
input
type
=
"checkbox"
:value
=
"item3"
v-model
=
"checkbox"
><
span
> {{item3}}</
span
>
</
div
>
</
div
>
</
div
>
</
div
>
|
vue數據綁定
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
data() {
return
{
radio2:
''
,
checkbox:[],
question:[
{
title:
"1、請選擇你的性別"
,
sex:[
'男'
,
'女'
]
},
{
title:
"2、請選擇你的愛好"
,
item:[
'打球'
,
'讀書'
,
'畫畫'
,
'游泳'
,
'跑步'
]
}
],
};
},
|
js部分
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//單選框radio選中值的改變
chooseSex(item){
this
.radio2 = item;
console.log(
"點擊"
,item,
"值"
,
this
.radio2);
},
//復選框checkbox多項選擇后的值,及取消選中后的其他值
chooseHobbied(item){
if
(box.indexOf(item) === -1){
box.push(item);
this
.checkbox = box;
console.log(
"點擊"
,item,
"值"
,box);
}
else
{
box.splice(box.indexOf(item),1);
console.log(
"box值"
,box);
this
.checkbox = box;
}
},
|
以上這篇vue radio單選框,獲取當前項(每一項)的value值操作就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持腳本之家。
<div class="art_xg">
<b>您可能感興趣的文章:</b><ul><li><a href="/article/159814.htm" title="vue+element UI實現樹形表格帶復選框的示例代碼" target="_blank">vue+element UI實現樹形表格帶復選框的示例代碼</a></li><li><a href="/article/194834.htm" title="Vue自定義組件雙向綁定實現原理及方法詳解" target="_blank">Vue自定義組件雙向綁定實現原理及方法詳解</a></li></ul>
</div>
</div>