我直接下载了Google驱动器上的文件,链接到该文件是:
https://drive.google.com/uc?export=download&id=1_kmh7bQmeLbgz8rsP4GaxWRBeJkzpo8g
生成直接下载链接的目的是直接开始下载,而无需在Google驱动器中打开文件.
每当我打开笔记本电脑/个人电脑中的此链接时,便会直接开始下载,但在安装了Google Drive应用程序的智能手机中打开此链接而不是直接开始下载时,便会在Google Drive中打开该链接.
有什么办法可以强制链接仅在浏览器中打开?
下面的附件是屏幕截图,它显示了什么:
最佳答案
尝试为我切换到Javascript即可.
var link = document.createElement('a');
link.innerHTML = 'download';
link.addEventListener('click',function(ev) {
link.href = "https://drive.google.com/uc?export=download&id=0BwuGm1VLQXLgTWNnd0pvbnBvTFk";
},false);
document.body.appendChild(link);
a {
background: #69c;
color: #fff;
padding: 5px 10px;
}