首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

Struts标签<html:cancel/>撤除按钮处理事件

2012-08-21 
Struts标签html:cancel/取消按钮处理事件html:cancel/标签默认情况下点击,是会报错的。?要想使用此按钮

Struts标签<html:cancel/>取消按钮处理事件

<html:cancel/>标签默认情况下点击,是会报错的。

?

要想使用此按钮可以在 struts-config.xml 中的action 增加如下相应属性:

?

<set-property property="cancellable" value="true" />

?

详细位置如下所示:

?

<action      attribute="helloForm"      input="/form/hello.jsp"      name="helloForm"      path="/hello"      scope="request"      type="com.zwn.struts.action.HelloAction">     <set-property property="cancellable" value="true"/>          <forward name="success" path="/form/helloSuccess.jsp" />     <forward name="fail" path="/form/helloFail.jsp"  redirect="true"/>?</action>
??

?

再在对应action里面增加对cancel按钮的处理方法:

?

?
public ActionForward execute(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServletResponse response) {              if (isCancelled(request)) { // 取消按钮处理return mapping.findForward("fail");}HelloForm helloForm = (HelloForm) form;return mapping.findForward("success");}
??

?

?

?

热点排行