Heim > Fragen und Antworten > Hauptteil
Ich möchte eine Datei-Upload-Funktion im Projekt implementieren. Bitte sagen Sie mir, wie ich sie über Jq implementieren kann
我想大声告诉你2017-05-18 10:57:05
uoloadify,公司项目里用了这个,建议用最新版本的,我们公司的后端非要用老版本的,结果很多东西要自己写,烦死了。
uploadify,分swf和H5两个版本,H5版本是收费的,swf版本兼容性好
大家讲道理2017-05-18 10:57:05
使用jquery.form.js就可以了
https://github.com/jquery-for...
$('#form').ajaxSubmit({
url : '${ctx}/file/upload',
data : {
},
dataType : 'json',
success : function(data) {
},
error : function(data) {
}
});
<form id="form" method="post" novalidate enctype="multipart/form-data">
<input name="file" type="file" />
</form>