由于在Struts中用自己写的ActionForm时,做验证后,出错信息一般都是用<html:errors>来显示的,可是这些错误信息是显示在页面上的,并不是像用DynaActionForm时,是用弹出信息的方式显示。为了保持系统的一致性,要把<html:errors>也改成弹出式的。 以下是我的修改方法: <logic:messagesPresent> <script> error = ''; <html:messages id="error"> error+='<bean:write name="error"/>'+'\n'; </html:messages> alert(error); </script> </logic:messagesPresent>
回复Comments
作者:
{commentrecontent}