AJAX跨域附件上传

来源:互联网 发布:弘法软件 编辑:程序博客网 时间:2024/06/05 11:36

<!DOCTYPE html><html><head><meta charset="UTF-8"><title>跨域文件上传</title></head><script type="text/javascript"src="http://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.js"></script><script type="text/javascript">function ajaxUpload() {var fd = new FormData();fd.append('file', $("#file_upload")[0].files[0]);$.ajax({type : "post",url : "http://192.168.1.119:8080/acc/upload.jsp",async : false,processData : false, // 不处理数据contentType : false, // 不设置内容类型data : fd,dataType : 'text', //返回类型json、textsuccess : function(data) {alert(data);}});}</script><body><b>文件上传</b><input type="file" name="file" id="file_upload" /><input type="button" value="上传图片" onclick="ajaxUpload()" /></body></html>

FormData对象使用说明

原创粉丝点击