← 返回工具列表
反馈表单生成器
快速创建团队反馈和调查表单
🌓 切换主题
🎯 快速模板
📊
绩效反馈
🔄
360度评估
📋
会议反馈
🚀
项目复盘
👋
入职体验
⭐
NPS调查
📝 表单信息
表单标题
表单描述
❓ 问题列表
+ 添加问题
👁️ 预览与导出
预览
HTML
Markdown
JSON
📋 复制
💾 下载
🔗 分享
"); lines.push(""); lines.push("
" + escapeHtml(title) + "
"); if (desc) { lines.push('
' + escapeHtml(desc) + "
"); } lines.push("
"); questions.forEach(function (q, i) { lines.push('
'); lines.push( "
" + (i + 1) + ". " + escapeHtml(q.text) + (q.required ? '
*
' : "") + "
" ); if (q.type === "text") { lines.push( '
" ); } else if (q.type === "textarea") { lines.push( '
" ); } else if (q.type === "radio") { q.options.forEach(function (opt) { lines.push( '
" + escapeHtml(opt) + "
" ); }); } else if (q.type === "checkbox") { q.options.forEach(function (opt) { lines.push( '
' + escapeHtml(opt) + "
" ); }); } else if (q.type === "rating") { var ratingOptions = ["1-很差", "2-较差", "3-一般", "4-较好", "5-很好"]; ratingOptions.forEach(function (opt) { lines.push( '
" + opt + "
" ); }); } else if (q.type === "nps") { lines.push('
'); for (var n = 0; n <= 10; n++) { lines.push( '
" + n + "
" ); } lines.push("
"); } lines.push("
"); }); lines.push('
提交反馈
'); lines.push("
"); lines.push(""); lines.push("