gpt4 book ai didi

iframe - 在 iframe 中下载文件时如何触发 onload 事件?

转载 作者:行者123 更新时间:2023-12-04 02:29:57 44 4
gpt4 key购买 nike

假设我们有以下 HTML 文件:

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Test iframe download</title>
<script type="text/javascript">

var init = 0;

function download() {
document.getElementById("dload_frame").src = "http://example.com/dload.py";
}

function alert() {
if (init == 0) {
init = 1;
}
else {
document.getElementById("alert_span").innerHTML = "Got it!";
}
}

</script>
</head>
<body>

<span id="alert_span">Main content.</span><br/>
<input type="button" value="Download" id="btn" onclick="download()" />
<iframe id="dload_frame" src="http://404.com/404" onload="alert()"> </iframe>

</body>
</html>

现在,如果 iframe 的 src 被重写到的 URL(在这种情况下 - “ http://example.com/dload.py ”)返回 HTML,没问题:onload 事件触发,span 的内容被替换,每个人都很高兴。

但是,如果 URL 返回的文件的内容类型设置为强制浏览器打开保存文件对话框的内容,则 iframe 的 onload 事件永远不会触发。

有什么解决方法吗?不需要使用 iframe,所需的行为是在浏览器开始下载提供的文件后启动回调。

最佳答案

我遇到了与此相同的问题:
这是我的解决方法,请看看它是否适合您:

<script>
function download(){
var url = 'http://example.com/dload.py';
var htm = '<iframe src="' + url +'" onload="downloadComplete()"></iframe>';
document.getElementById('frameDiv').innerHTML = htm;
}
</script>

<div style="display:none" id="frameDiv">
</div>
<button onclick="download()">download file</button>

据我所知,iframe 的 onload 事件只触发一次。
为 src 属性设置另一个值不会导致 onload 事件再次触发。

关于iframe - 在 iframe 中下载文件时如何触发 onload 事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1524639/

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