我有一个input type[file]
组件。用户浏览并选择一个文件后,我需要点击一个按钮下载所选文件。
function download(){
...
}
<input type='file' id='file1'>
<button type='button' onclick='download()'></button>
谢谢, Nawaz Ahmed
答案 0 :(得分:1)
window.onload = function() {
var txt = document.getElementById('txt');
txt.value = window.onload + '';
document.getElementById('link').onclick = function(code) {
this.href = 'data:text/plain;charset=utf-8,'
+ encodeURIComponent(txt.value);
};
};
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<div id="txtWrap">
<textarea id="txt"></textarea>
</div>
<a href="" id="link" download="code.txt">Download Above Code</a>
你可以从这里找到一些想法,根据你的问题,我不确定我是对还是错。