body {
fontfamily: Arial, sansserif;
margin: 0;
padding: 20px;
}
h1 {
textalign: center;
marginbottom: 30px;
}
p {
lineheight: 1.5;
}
.feedbackform {
maxwidth: 80%;
margin: 0 auto;
}
label {
display: block;
marginbottom: 10px;
}
input[type="text"], textarea {
width: 100%;
padding: 5px;
marginbottom: 15px;
}
button {
padding: 10px 20px;
backgroundcolor: 007BFF;
color: white;
border: none;
cursor: pointer;
}
.result {
margintop: 50px;
border: 1px solid ccc;
padding: 20px;
backgroundcolor: f9f9f9;
}
document.getElementById('feedbackform').addEventListener('submit', async (e) => {
e.preventDefault();
const name = document.getElementById('name').value;
const course = document.getElementById('course').value;
const problem = document.getElementById('problem').value;
const solution = document.getElementById('solution').value;
// 假设这里是一个处理反馈的API接口
const response = await fetch('/api/feedback', {
method: 'POST',
headers: {
'ContentType': 'application/json'
},
body: JSON.stringify({ name, course, problem, solution })
});
if (response.ok) {
const feedbackData = await response.json();
document.getElementById('feedbackcontent').innerHTML = `
学生姓名: ${feedbackData.name}
课程: ${feedbackData.course}
问题: ${feedbackData.problem}
建议: ${feedbackData.solution}
`;
} else {
document.getElementById('feedbackcontent').innerHTML = `
反馈提交失败,请稍后再试。
`;}
});