0

我在 jsp 文件中有一个带有此代码的简单登录表单:

     <s:form
        action="conexion" validate="true" theme="xhtml" target="formError">
        <s:textfield name="username" key="profile.rut" />
        <s:password name="password" key="profile.password" />
        <s:submit id="boton_ingreso"/>
    </s:form>

当它被渲染时,它以这种方式渲染:

<form onreset="clearErrorMessages(this);clearErrorLabels(this);" method="post" target="formError" action="/AgendaPlus/conexion.action" onsubmit="return validateForm_conexion();" name="conexion" id="conexion">
<table class="wwFormTable">
<tbody><tr>
<td class="tdLabel"><label class="label" for="conexion_username">RUT:</label></td>
<td><input type="text" id="conexion_username" value="" name="username"></td>
</tr>

<tr>
<td class="tdLabel"><label class="label" for="conexion_password">Contraseña:</label></td>
<td><input type="password" id="conexion_password" name="password"></td>
</tr>

<tr>
<td colspan="2"><div align="right"><input type="submit" value="Submit" id="boton_ingreso" class="ui-button ui-widget ui-state-default ui-corner-all" role="button" aria-disabled="false">
</div></td>
</tr>

</tbody></table></form>

这样,当发生错误时,错误会显示在每个字段上方,并带有错误作为<tr>标记,并且由于它是一个表格,因此我无法将其设置为移动到其他地方。我尝试使用<s:form>标签的目标属性,但它不起作用。

4

1 回答 1

0

请参阅fielderror 的标签文档

<s:fielderror />

您知道还有其他主题,并且您可以创建自己的主题,对吗?

例如,"simple"主题不会呈现任何表格或错误。

target属性似乎是错误报告的一种奇怪用途。

于 2013-04-11T01:33:10.753 回答