好的,我们在这里:我正在创建一个javascript测验。我不想使用' next'和'回来'用于浏览动态考试的按钮。相反,我希望能够单击答案选项,然后在单击单选按钮答案选项后,考试将自动进入下一个问题。
以下是我用于测验的代码的链接:https://codepen.io/gcarino/pen/LDgtn/
编程' next'按钮,应由任何答案选项替换:
$('#next').on('click', function (e) {
e.preventDefault();
// Suspend click listener during fade animation
if(quiz.is(':animated')) {
return false;
}
choose();
// If no user selection, progress is stopped
if (isNaN(selections[questionCounter])) {
alert('Please make a selection!');
} else {
questionCounter++;
displayNext();
}
});
感谢您的一切!