JQuery 更改事件下载文件
HTML 代码:
<span>Download Report as</span>
<select id="comboFile">
<option value="none">Select</option>
<option value="http://somewhere/123.pdf">PDF</option>
<option value="http://somewhere/123.csv">CSV</option>
</select>
JQuery:
$(document).ready(function () {
$("#comboFile").change(function () {
if ($(this).val() != "none") GetFile($(this).val());
$(this).val("none");
});
});
function GetFile(fileURL){
///Code to be filled
//window.location.href = fileURL;///Does not seem to work for new window
}
我几乎陷入困境..我如何启动文件下载..我需要填写获取文件功能的代码...
HTML Code:
<span>Download Report as</span>
<select id="comboFile">
<option value="none">Select</option>
<option value="http://somewhere/123.pdf">PDF</option>
<option value="http://somewhere/123.csv">CSV</option>
</select>
JQuery:
$(document).ready(function () {
$("#comboFile").change(function () {
if ($(this).val() != "none") GetFile($(this).val());
$(this).val("none");
});
});
function GetFile(fileURL){
///Code to be filled
//window.location.href = fileURL;///Does not seem to work for new window
}
I am pretty much stuck.. How do I initiate file download.. I need to fill in the code for Get File function...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)