easyUI 上传多个附件并可以删除

js

var fileDom = document.getElementById("excelFile");
        var infoBoxDom = document.getElementById('info_box');
        function upload(json){

            console.log(json);
            var file_app_id = json.file_app_id;
            var file_serial_no = json.file_serial_no;
            var imgUrl = "../../img/del_icon.png";
            var downloadUrl = scheme+'://'+host+':'+port+'/'+download_path+'?file_app_id='+file_app_id+'&file_serial_no='+file_serial_no;//下载地址
            var picUrl = scheme+'://'+host+':'+port+'/'+preview_path+'?file_app_id='+file_app_id+'&file_serial_no='+file_serial_no;//预览地址
            $('#info_box').append(
                "" +
                ""+json.origin_file_name+""+
                ""+
                ""
            );
        }
        function delImgFsm(fileNo){
            $("#"+fileNo).remove();
        }

html


			
			
				

 

你可能感兴趣的:(easyUI 上传多个附件并可以删除)