DOWNLOAD THE VIDEO 我怎样才能正确地做到这一点,因为我需要它在-6ren">
gpt4 book ai didi

javascript - div 中的按钮可通过弹出窗口下载视频

转载 作者:行者123 更新时间:2023-12-03 02:42:09 31 4
gpt4 key购买 nike

我在 div 中有一个带有视频链接的按钮。我想要弹出下载视频的提示。我现在有这个代码,但它会打开一个视频:

<div  class="btn btn-primary-rect " style="text-align: center;" onClick=window.open("<?php echo $lien;?>")>DOWNLOAD THE VIDEO <img src="images/upload.png" class="upload"> </div>  

我怎样才能正确地做到这一点,因为我需要它在 IE 和 Firefox、Chrome、Safari 中工作......

最佳答案

如果您实际上是在 PHP 中进行编码(如标签中建议的那样),那么您可以使用 PHP 脚本暂存该文件,然后更改配置 header 以告诉浏览器将该文件视为附件下载,大致如下:

header('Content-Disposition: attachment; filename="file-to-download.ext"');
readfile('actual-path-to-file.ext');

这样做,而不是直接链接,将允许您控制文件在客户端的处理方式。

关于javascript - div 中的按钮可通过弹出窗口下载视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48286100/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com