Skip to content

Commit

Permalink
update to v1.0.32-release
Browse files Browse the repository at this point in the history
  • Loading branch information
KOHGYLW committed May 18, 2020
1 parent 79e6f2a commit 7e44880
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
Binary file modified kiftd-1.0.32-RELEASE.jar
Binary file not shown.
15 changes: 9 additions & 6 deletions webContext/js/home.js
Original file line number Diff line number Diff line change
Expand Up @@ -1600,8 +1600,10 @@ function doupload(count) {
$("#filecount").text("(" + count + "/" + fcount + ")");// 显示当前进度
}
$("#uploadstatus").prepend(
"<p>" + fname + "<span id='uls_" + count
+ "'>[正在上传...]</span></p>");
"<p>"
+ fname.replace(/\'/g, '&#39;').replace(/</g, '&lt;')
.replace(/>/g, '&gt;') + "<span id='uls_"
+ count + "'>[正在上传...]</span></p>");
xhr = new XMLHttpRequest();// 这东西类似于servlet里面的request

var fd = new FormData();// 用于封装文件数据的对象
Expand Down Expand Up @@ -3275,10 +3277,11 @@ function iteratorImport(i, newFolderName) {
if (fcount > 1) {
$("#importcount").text("(" + (i + 1) + "/" + fcount + ")");// 显示当前进度
}
$("#importstatus")
.prepend(
"<p>" + fname + "<span id='ils_" + i
+ "'>[正在上传...]</span></p>");
$("#importstatus").prepend(
"<p>"
+ fname.replace(/\'/g, '&#39;').replace(/</g, '&lt;')
.replace(/>/g, '&gt;') + "<span id='ils_" + i
+ "'>[正在上传...]</span></p>");
xhr = new XMLHttpRequest();// 这东西类似于servlet里面的request

var fd = new FormData();// 用于封装文件数据的对象
Expand Down
Loading

0 comments on commit 7e44880

Please sign in to comment.