首页 > 网站 > WEB开发 > 正文

Js配置资料下载

2024-04-27 14:13:38
字体:
来源:转载
供稿:网友

Js配置资料下载

1.使用windows.loaction.href链接下载:

 此种下载在本页打开,eg:windows.location.href = http://www.xxx.xx/aa.apk;

2.使用windows.open下载:

此种下载在新页面打开,eg:windows.open(“http://www.xxx.xx/aa.apk”);

3.使用iframe下载:(部分浏览器不支持)

此种方法在本地页面打开,eg:

var iframe = document.getElementById("ifrm_Dome");

if(iframe == null){

  iframe = document.createElement("iframe");

  iframe.id="ifrm_Dome";

} iframe.style.display = "none"; iframe.src = "http://www.xxx.xx/aa.apk"; document.body.appendChild(iframe);


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表