微信小程序实现答题样式1(显示题目)

更新时间:2023-07-18 22:28:41 阅读: 评论:0

微信⼩程序实现答题样式1(显⽰题⽬)
咬文嚼字ppt今天群⾥有⼈问了⼀个问题,怎么实现单选题和多选题在单击时选中,想着反正也没啥事,就写个demo试试看,代码如下:梁起拱
⾸先在data⾥⾯添加问答题,如下:最强拍照手机
data: {
quest: [{
id: 1,
type: 1, //类型,1.单选,2.多选
question: "1.你有⼥朋友吗?(单选)",
answers: [{
content: 'A.有'
}, {
content: 'B.没有'
}]
}, {
id: 2,
type: 1,
question: "2.⽬前薪资在哪个范围?(单选)",
爱和感恩
answers: [{
content: 'A.3-6k'
}, {
content: 'B.6-8k'
}, {
content: 'C.8-10k'
}, {
content: 'D.10k以上'
跨中弯矩}]
}, {
id: 3,
type: 2,
question: "3.你喜欢哪⼀种编程语⾔?(多选)",
answers: [{
content: 'A.Java'
}, {
content: 'B.C语⾔'
}, {
content: 'C.PHP'
}, {
content: 'D.Python'
}, {
content: 'E.JavaScript'
}, {
content: 'F.其他'
}]
}]
},
然后在wxml⽂件⾥⾯显⽰问答题,代码如下:
<view class='quest_container' wx:for="{{quest}}" wx:key="id" wx:for-index="outterIndex">
风车动
<text>{{item.question}}</text>
<view wx:for="{{item.answers}}" wx:key="content" bindtap="answerSelected" data-outidx='{{outterIndex}}' data-idx="{{index}}" class="item {{item.lected?'active    <text>{{t}}</text>
</view>
</view>
对应的绑定事件如下:
answerSelected(e) {
let outidx = e.currentTarget.datat.outidx;
let idx = e.currentTarget.datat.idx;
let question = this.data.quest[outidx];
if (pe == 1) {
//单选
for (let item of question.answers) {
item.lected = fal;
}菠菜泥
question.answers[idx].lected = true;
this.tData({
quest: this.data.quest
});
刺梨的功效与作用
} el if (pe == 2) {
//多选
question.answers[idx].lected = !question.answers[idx].lected;      this.tData({
quest: this.data.quest
});
}
},
最终效果如下:

本文发布于:2023-07-18 22:28:41,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/89/1086927.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:问答题   代码   多选题   实现   单选题   答题   绑定
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图