这是我正在处理的代码,我希望你能帮我把代码放在我的最后问题
以下是html标记
<div id="result" class="container-fluid result" style="display: none; position: absolute; top: 1px; min-width: 100%; min-height: 100%; background-image:url('./img/giphy-downsized.gif'); background-size: cover; background-repeat: no-repeat;"></div>
以下是javascript代码:我想添加一个按钮,以便我可以退出。
if(currentQuestion == totQuestions){
container.style.display = 'none';
resultCont.style.display = '';
resultCont.textContent = 'Your Score: ' + score;
return;
}
loadQuestion(currentQuestion);
}
loadQuestion(currentQuestion);
</script>