🛠️
Dev
Tools
首页
›
问卷制作
📋
问卷制作
在线问卷/测试制作,创建题目/选项,生成可分享的HTML
预览
导出HTML
导出JSON
清空
添加题目
◉ 单选题
☑ 多选题
📝 文本题
${data.title}
`; if (data.description) html += `
${data.description}
`; data.questions.forEach((q, i) => { html += `
${i + 1}. ${q.title}
`; if (q.type === 'text') { html += '
'; } else { q.options.forEach(opt => { const t = q.type === 'radio' ? 'radio' : 'checkbox'; html += `
${opt}
`; }); } html += '
'; }); html += '
提交