我必须构建JS多选问卷。 为了抓住下一个问题,然后增加,我们下次使用下面的代码时会得到一个新的:
var random = questions[questionIndex++ % questions.length];
$('#question').text(random.question);
$('input[type="radio"]').attr('checked', false).checkboxradio('refresh');
setRadioLabel('radio1', random.options[0]);
setRadioLabel('radio2', random.options[1]);
setRadioLabel('radio3', random.options[2]);
currentQuestion = random;
我在第$('input[type="radio"]').attr('checked', false).checkboxradio('refresh');
行
错误 - 未捕获的TypeError:undefined不是函数