$("#btnUpload").click(function(){
if(!isButtonEnabled){
return;
}

if ($("#uploadMemo").val() == ""){
alert("请填写文件上传说明。");
return;
}
if ($("#file").val() == ""){
alert("请填写选择要上传的模型文件(*.xml)。");
return;
}
hideAlerm();
$("div#uploadModal").modal('show');
$("#modalProgressBar").width("0%");
$("#modalFooter").text("正在上传数据文件..."); $.ajaxFileUpload({
url:"http://119.57.16.98:8082/zldbManage/ModleImportServlet",
secureuri:false,
fileElementId:"file",
data :{
     "userid": "<?php echo($userID);?>",
     "session": "<?php echo($session);?>",
     "username": "<?php echo($userName);?>",
     "memo": $("#uploadMemo").val()
     },
dataType:"text",
success: function(data, status){ },
error: function(data, status, e){
alert("error:"+e);
showErrorMsg("导入数据失败!请检查网络线路。");
},
contentType: "application/x-www-form-urlencoded; charset=utf-8" 
});
// startGetProgress($("#modalProgressBar"));
});插件js