创建一个在线调查应用可以让用户回答问题并查看结果。以下是一个基于HTML、CSS和JavaScript的示例,用于创建一个简单的在线调查应用:
在线调查
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: white;
text-align: center;
padding: 20px;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
background-color: white;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
form {
margin-bottom: 20px;
}
label {
display: block;
margin-bottom: 服务器托管网10px;
font-size: 18px;
}
input[type="radio"] {
margin-righ服务器托管网t: 5px;
}
input[type="submit"] {
padding: 10px;
font-size: 18px;
background-color: #333;
color: white;
border: none;
cursor: pointer;
}
#results {
display: none;
}
在线调查
喜欢
不喜欢
调查结果:
问题 1:
问题 2:
const surveyForm = document.getElementById('surveyForm');
const resultsDiv = document.getElementById('results');
const resultQ1 = document.getElementById('resultQ1');
const resultQ2 = document.getElementById('resultQ2');
surveyForm.addEventListener('submit', function(event) {
event.preventDefault();
const formData = new FormData(surveyForm);
const answerQ1 = formData.get('q1');
const answerQ2 = formData.get('q2');
resultQ1.textContent = answerQ1;
resultQ2.textContent = answerQ2;
resultsDiv.style.display = 'block';
});
在这个示例中,用户可以回答两个问题,并在提交后查看调查结果。调查结果将显示在页面上。
要创建你自己的在线调查应用,你可以按照以下步骤进行:
- 复制上面的HTML代码到一个文本编辑器中。
- 根据需要自定义问题、样式,或者添加更多问题和答案选项。
- 保存文件并命名为
index.html
。 - 使用浏览器打开这个HTML文件,查看你的在线调查应用。
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
机房租用,北京机房租用,IDC机房托管, http://www.fwqtg.net
声明 本文章中所有内容仅供学习交流,抓包内容、敏感网址、数据接口均已做脱敏处理,严禁用于商业用途和非法用途,否则由此产生的一切后果均与作者无关,若有侵权,请联系我立即删除! 网站 aHR0cHM6Ly9mb2dhbmctbS5pdG91Y2h0di5jbi9t…