我想创建一个脚本,该脚本将按设定的时间间隔(例如每30分钟)自动启动远程文件的下载,并将下载文件保存到目录中。
在这里完成搜索和Google,没有任何帮助。任何输入都将非常感激。
感谢。
答案 0 :(得分:0)
尝试使用链接并使用Javascript单击它。
function download(){
document.getElementById("link").click();
}

<a href="https://www.google.com/" download="page.html" style="display: none;" id="link"></a>
<input type="button" value="Download Google as html" onclick="download();"/>
&#13;