文件下载后关闭 jquery lightbox

发布于 2024-11-24 00:22:57 字数 333 浏览 1 评论 0原文

我构建了一个简单的表单,单击某个链接即可在灯箱中打开。在表单提交时,我已编写脚本使用以下 php 脚本下载文件...

header('Content-type: application/pdf');                
header('Content-Disposition: attachment; filename="pdf/myFile.pdf"');               readfile('myFile.pdf');

现在在表单提交后,文件开始下载,但我想在完成文件下载或表单提交后关闭灯箱。

有人可以指导一下吗?

多谢!

I have built a simple form which opens up in lightbox on click of some link. On form form submission I have scripted to download the file using following php script...

header('Content-type: application/pdf');                
header('Content-Disposition: attachment; filename="pdf/myFile.pdf"');               readfile('myFile.pdf');

Now after form submission , file starts downloading, but I want to close lightbox after finishing file download or after form submission.

Could anybody please guide regarding the same.

Thanks alot!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

握住我的手 2024-12-01 00:22:57

您可以通过对特定 div 使用 style="display:none;" 来执行此操作,或者也可以使用 window.location.reload(true) 刷新网页; 功能。

但我认为更好的方法是你应该将 div 样式更改为 display:none

谢谢。

you can do this by using style="display:none;" for that particular div OR also can refresh webpage by using window.location.reload(true); function.

but i think the batter way is you should change div style to display:none.

Thanks.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文