<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script type="text/javascript" src="http://bmly.bamalaya.com/app/resource/js/lib/jquery-1.11.1.min.js?v=20160906"></script>
</head>
<body>
<button id='get'>文件上传</button>
</body>
<script>
function show(){
var myFrame= document.createElement('iframe');
myFrame.src = 'http://fuyuan-net.oss-cn-hangzhou.aliyuncs.com/image/201812121109275441.xls';
myFrame.style.display = 'none';
document.body.appendChild(myFrame);
}
$(document).on('click','#get',function(){
show()
})
</script>
</html>