answerShow(value){
let _this =this;
if(this.chooseOpt){
$('input[name=jt_answer'+value+']:checked').each(function(){
_this.resultValues.push($(this).val());//向数组中添加元素
});
console.log(this.resultValues,$('input[name=jt_choose'+value+']:checked'))
}else{
layer.msg('只能单选噢~')
}
}
网友评论