理财策略问卷分析
```html
body {
fontfamily: Arial, sansserif;
lineheight: 1.6;
margin: 20px;
padding: 20px;
}
h1 {
color: 333;
}
p {
color: 666;
}
.question {
marginbottom: 15px;
}
.question h2 {
marginbottom: 5px;
color: 333;
}
.question p {
marginbottom: 10px;
}
.answeroptions {
marginleft: 20px;
}
.answeroptions label {
display: block;
marginbottom: 5px;
color: 333;
}
.submitbtn {
backgroundcolor: 4CAF50;
border: none;
color: white;
padding: 10px 20px;
textalign: center;
textdecoration: none;
display: inlineblock;
fontsize: 16px;
margintop: 20px;
cursor: pointer;
borderradius: 5px;
}
理财策略问卷
document.getElementById('financesurveyform').addEventListener('submit', function(event) {
event.preventDefault();
const formData = new FormData(this);
const formValues = {};
formData.forEach((value, key) => {
formValues[key] = value;
});
// You can process the form values here or send them to a server for further processing
console.log(formValues);
// For now, let's just show an alert indicating successful submission
alert('谢谢!您的问卷已提交。');
});