使用ajax在struts2中上传文件

前端之家收集整理的这篇文章主要介绍了使用ajax在struts2中上传文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何使用ajax在struts 2中上传文件
下载 Struts2 jQuery Plugin并像你一样用Struts2做它.
<%@ taglib prefix="s" uri="/struts-tags"%>
<%@ taglib prefix="sj" uri="/struts-jquery-tags"%>
<html>
  <head>
    <sj:head/>
  </head>
  <body>
    <s:form id="form" action="AjaxTest">
      <s:file name="myFile" ... />
      <sj:submit value="Submit Form" targets="myAjaxTarget"/>
    </s:form>
    <div id="myAjaxTarget">
    </div>
  </body>
</html>
原文链接:/ajax/159935.html

猜你在找的Ajax相关文章