if(emailVal == '') {
$("#email").after('<span class="error"><font color="red">Please enter your email address.</span>');
hasError = true;
}
当我使用上面的javascript时,除了email textbox
<form:input path="email" id="email"/>
<c:if test="${!empty is_exist_user}">
<span class="error"><font color="red">${is_exist_user}</font></span>
</c:if>
但是当我在jsp文件中使用上面的代码时,消息会显示在email textbox
下方,除了email textbox
答案 0 :(得分:0)
使用CSS调整由任何自定义标记生成的内容,修改由该自定义标记生成的html,或者不使用自定义标记。