我想应用客户端验证(使用JavaScript或jQuery)。如果验证失败,我想填充Spring MVC的<form:errors path="firstName">
标签。这可能吗?服务器端验证工作正常。
例如,使用这样的jsp片段:
<form:form method="POST" commandName="student">
...
<label>First Name:</label>
<form:input path="firstName" id="firstName" maxlength="20">
<form:errors path="firstName">
</form:form>
我希望能够使用客户端JavaScript代码操作form:errors
标签,如下所示:
function validateForm() {
if(firstName.value==null || firstName.value=="") {
//here I want to populate the <form:errors> tag
return;
}
}