本文介绍了上传文件中使用struts2的阿贾克斯的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何上传在Struts 2的文件中的AJAX
How can I upload a file in struts 2 using ajax
推荐答案
下载 Struts2的jQuery插件一>,做它喜欢你normaly做Struts2的。
Download the Struts2 jQuery Plugin and do it like you normaly do it with 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>
这篇关于上传文件中使用struts2的阿贾克斯的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!