```html
body {
fontfamily: Arial, sansserif;
lineheight: 1.6;
margin: 20px;
}
h1 {
textalign: center;
}
form {
maxwidth: 600px;
margin: 0 auto;
}
input[type="text"],
input[type="email"],
textarea {
width: 100%;
padding: 10px;
marginbottom: 15px;
border: 1px solid ccc;
borderradius: 4px;
boxsizing: borderbox;
}
textarea {
height: 150px;
}
input[type="submit"] {
backgroundcolor: 4CAF50;
color: white;
padding: 15px 20px;
border: none;
borderradius: 4px;
cursor: pointer;
fontsize: 16px;
}
input[type="submit"]:hover {
backgroundcolor: 45a049;
}
.error {
color: red;
}
.success {
color: green;
}
document.getElementById('educationFundForm').addEventListener('submit', function(event) {
event.preventDefault();
var fullName = document.getElementById('fullName').value;
var employeeID = document.getElementById('employeeID').value;
var department = document.getElementById('department').value;
var email = document.getElementById('email').value;
var courseName = document.getElementById('courseName').value;
var courseCost = document.getElementById('courseCost').value;
var justification = document.getElementById('justification').value;
// Here you can add validation logic before submitting the form
// Example: Check if email is valid
var emailPattern = /^[^\s@] @[^\s@] \.[^\s@] $/;
if (!emailPattern.test(email)) {
alert('请输入有效的邮箱地址');
return;
}
// If all validation passes, you can submit the form data to the server or perform other actions
// For now, let's just display a success message
alert('申请提交成功!');
// You can also reset the form fields after submission if needed
document.getElementById('educationFundForm').reset();
});
```