我有一个页面,其中包含一个xyz.com
。
iframe的来源不是来自同一域。
父URL为:abc.com
,iframe URL为:xyz.com
iFrame包含一个下载按钮,用于下载文件。此下载按钮在Chrome中可以正常使用,但无法在IE中运行
<html>
<body>
<iFrame src="abc.com"></iFrame>
</body>
<html>
页面内容。
abc.com
<button onClick ="downloadFile()">Download</button>
function downloadFile()
{
window.location = "abc.com/download";
}
页面
db-f1-micro