我利用keyup事件使栏位可以自动保存到数据库html<input type="file" id="file" name="cover" accept="image/jpeg, image/png, image/jpg">ajax$('body').on('keyup', '#content, #title', function(e){var content = $('.note-editable').html();var title = $('#title').val();var file = $('#file').val();
$.ajax({ type: "POST", url: "auto-save", data: { "content": content, "title": title, "file": file
}, dataType: "text", success: function(data){但有个问题里面有个 input file,我要如何使他能自动将档案丢到后端去?(当 input on change的时候)但这不是form 形式,单纯取值丢后端我发现加上了这个完全行不通呢enctype: "multipart/form-data",cache: false,contentType: false,processData: false,如果不透过表单的方式,怎么抓到 input file 的图片文件,好让我可以move_uploaded_file?
- 1 回答
- 0 关注
- 451 浏览
添加回答
举报
0/150
提交
取消