实在无奈 
搞个
ul{
list-style-type:none;
float:left;}
 li
{
float:left;
}
稍微好看了点
可是 错误信息还是显示在input下面一行 ,怎么设样式才能让他在同行显示啊,,display:inline无效。。郁闷
还有 这样会影响整个页面 的UL LI  怎么弄啊。昏哦

解决方案 »

  1.   

    为什么都这么爱用自带的错误处理呢 别用不就完了。。STRUTS2的错误处理对我来说唯一的用处就是把原来写在ACTION里的判断放到了验证里并且用这个来判断我的JS脚本的验证有木有成功
      

  2.   

    发现在输出 s:<s:fielderror theme="simple">总出现<ul><li>,由于所看文档是说去掉struts提供的风格只要使用theme="simple"就可以。找了一些资料也没解决 最后逼不得已修改了struts2-core-2.0.11.1.jar\template\simple\fielderror.ftl,修改完毕,保存,重新添加到jar包里面。发现问题OK了。 
    <#--
    /*
    * $Id: Action.java 502296 2007-02-01 17:33:39Z niallp $
    *
    * Licensed to the Apache Software Foundation (ASF) under one
    * or more contributor license agreements.  See the NOTICE file
    * distributed with this work for additional information
    * regarding copyright ownership.  The ASF licenses this file
    * to you under the Apache License, Version 2.0 (the
    * "License"); you may not use this file except in compliance
    * with the License.  You may obtain a copy of the License at
    *
    *  http://www.apache.org/licenses/LICENSE-2.0
    *
    * Unless required by applicable law or agreed to in writing,
    * software distributed under the License is distributed on an
    * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    * KIND, either express or implied.  See the License for the
    * specific language governing permissions and limitations
    * under the License.
    */
    -->
    <#if fieldErrors?exists><#t/>
    <#assign eKeys = fieldErrors.keySet()><#t/>
    <#assign eKeysSize = eKeys.size()><#t/>
    <#assign doneStartUlTag=false><#t/>
    <#assign doneEndUlTag=false><#t/>
    <#assign haveMatchedErrorField=false><#t/>
    <#if (fieldErrorFieldNames?size > 0) ><#t/>
    <#list fieldErrorFieldNames as fieldErrorFieldName><#t/>
      <#list eKeys as eKey><#t/>
      <#if (eKey = fieldErrorFieldName)><#t/>
       <#assign haveMatchedErrorField=true><#t/>
       <#assign eValue = fieldErrors[fieldErrorFieldName]><#t/>
       <#if (haveMatchedErrorField && (!doneStartUlTag))><#t/>
        <#assign doneStartUlTag=true><#t/>
       </#if><#t/>
       <#list eValue as eEachValue><#t/>
         <#rt/>
    <#if parameters.cssClass?exists>
    class="${parameters.cssClass?html}"<#rt/>
    <#else>
    <#rt/>
    </#if>
    <#if parameters.cssStyle?exists>
    style="${parameters.cssStyle?html}"<#rt/>
    </#if>
    ${eEachValue} 
       </#list><#t/>   
      </#if><#t/>
      </#list><#t/>
    </#list><#t/>
    <#if (haveMatchedErrorField && (!doneEndUlTag))><#t/>
      <#assign doneEndUlTag=true><#t/>
    </#if><#t/>
    <#else><#t/>
    <#if (eKeysSize > 0)><#t/>
       <#list eKeys as eKey><#t/>
        <#assign eValue = fieldErrors[eKey]><#t/>
        <#list eValue as eEachValue><#t/>
        <#rt/>
    <#if parameters.cssClass?exists>
    class="${parameters.cssClass?html}"<#rt/>
    <#else>
      <#rt/>
    </#if>
    <#if parameters.cssStyle?exists>
    style="${parameters.cssStyle?html}"<#rt/>
    </#if>
    >${eEachValue} 
        </#list><#t/>
       </#list><#t/>
    </#if><#t/>
    </#if><#t/>
    </#if><#t/>
    我按照以上的方法进行修改后,终于没有了 UL LI Tab
      

  3.   

    将s:form的theme改为simple,然后用表格格式化输出就可以了