let questionCount = 0; let currentQuestionnaireId = null; function toggleQueType() { const queType = document.querySelector('.quetype'); const addButton = document.querySelector('.but'); if (queType.style.display === 'none') { queType.style.display = 'flex'; addButton.style.marginTop = '0'; } } // 添加单选题 function addRadioQuestion(existingQuestion = null) { questionCount++; const questionHtml = `