AjaxFileUpload.js

jQuery.AjaxFileUpload.js是一款jQuery插件,用于通过ajax上传文件。

功能特点:

  • 不依赖于特定的HTML只要给一个<INPUTTYPE="file">

  • 它不需要你的服务器响应时指定任何特定方式

  • 可以对大批量文件进行操作

例如:

function uploadHead(){
	  $.ajaxFileUpload({
	      url:"${contextPath}" + "/sys/sysuser/uploadBasicHead",//需要链接到服务器地址 
	      secureuri:false,
	      fileElementId:"basicInfoHead",//文件选择框的id属性
	      dataType: 'json',   //json
	      success: function (data) {
	         $("#imgHead").attr("src","${contextPath}" + "/sys/sysuser/readImage?imagePath="+data.imagePath);
	        $('#basicHeadUrl').val(data.imagePath);
	      },
	      error:function(XMLHttpRequest, textStatus, errorThrown){
	     	alert('上传失败!' + errorThrown);
	   	 }
	  });
	};



页面调用之处如下:
<input type="file" onchange="uploadHead();" id="basicInfoHead" style="display:none;"



你可能感兴趣的:(AjaxFileUpload.js)