使用Ajax在struts2中上传文件
如何使用Ajax在Struts 2中上传文件
回答:
下载Struts2
jQuery插件,并像通常使用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在struts2中上传文件 的全部内容, 来源链接: utcz.com/qa/409808.html