jquery 多文件上传 (java)

$(function(){
			$('#T8A').MultiFile({ 
			  	STRING: {
		   			remove: '<img src="delete.gif" height="16" width="16" alt="x"/>'
			  	},
	   			list: '#T7-list'
	   			//accept:'gif|jpg|bmp', 
	   			//max:3
			 }); 
			 
		 	$('#ajax-button').click(function(){
				$('#uploadfrom').ajaxSubmit({
					success: function(r){
						$('#ajax-results').html(r);
						$('#T8A').MultiFile('reset');
					}
				});
			});
		});
 


jquery 多文件上传 (java)

你可能感兴趣的:(jquery,多文件上传)