文件下载后关闭 jquery lightbox
我构建了一个简单的表单,单击某个链接即可在灯箱中打开。在表单提交时,我已编写脚本使用以下 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过对特定 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.