使用复选框中的ajax在Struts 2中执行方法

时间:2016-06-17 12:55:31

标签: java jquery ajax checkbox struts2

我想从复选框中执行Struts 2中的一个方法但是在ajax中没有刷新页面任何想法如何做到这一点? 我正在使用struts 2复选框

<s:checkbox name="sie_cocherDecocher" fieldValue="true" />

我还尝试了struts 2 dojo标签:

    <sx:a executeScripts="true" value="Enregistrer" targets="divajax" 
      onchange="document.getElementById('loading_4').style.display='block';" indicator="indicator" 
      href="%{sie_cocherDecocher}" cssClass="sect">
      <s:checkbox name="sie_cocherDecocher" fieldValue="true" />
    </sx:a> 

我已经映射了这样的动作:

<action name="sie_cocherDecocher"
    class="com.controleur.Central"
    method="sie_cocherDecocher">
    <interceptor-ref name="createSession" />
    <interceptor-ref name="defaultStack" />
    <interceptor-ref name="allowAccessIntercept" />
    <result name="allowAccess">/WEB-INF/jsp/AllowAccess/connectAllowAccess.jsp
    </result>
    <param name="contentType">text/html;charset=ISO-8859-1</param>
    <result name="success">/WEB-INF/jsp/bord.jsp
    </result>
</action>

0 个答案:

没有答案