希望调用创建pdf文档的aspx的IHAC。解决方案目前是这样的:
$(document).on('click', '#print', function (event) {
location.href = "Handlers/PrintHierarchy.ashx";
event.stopImmediatePropagation();
});
我想在处理过程中向页面添加加载程序。像这样的东西
$(document).on('click', '#print', function (event) {
$("#bottomRight").mask("Processing document...");
location.href = "Handlers/PrintHierarchy.ashx";
$("#bottomRight").unmask();
event.stopImmediatePropagation();
});
问题是我无法检测到我的PrintHierarchy.aspx何时完成并且我的加载器立即关闭。
我可以在“文件保存”对话框打开时推迟关闭加载程序吗?
答案 0 :(得分:1)
您需要检测文件保存对话框打开而不是aspx完成。