ZhiYeJianKang_PeiXun/Song.Site/Manage/Utility/UploadPath/Scripts/FileExplorer.js
2025-02-20 15:41:53 +08:00

14 lines
392 B
JavaScript

$(function () {
fileSelectEvent();
});
//选择文件的事件
function fileSelectEvent() {
$(".item").click(function () {
var file = $.trim($(this).text());
var path = $.trim($("#ltCuurentPath").text());
//调用上级页面方法
var win = window.top.PageBox.parentWindow(window.name);
win.setSelectFile(file, path,window.name);
});
}