JQuery 更改事件下载文件

发布于 2024-11-02 14:28:23 字数 735 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笔落惊风雨 2024-11-09 14:28:23
$(document).ready(function () {
       $("#comboFile").change(function () {
        if ($(this).val() != "none") GetFile($(this).val());
        $(this).val("none");
    });
});

function GetFile(fileURL){
///Code to be filled
//window.open(fileURL);
}
$(document).ready(function () {
       $("#comboFile").change(function () {
        if ($(this).val() != "none") GetFile($(this).val());
        $(this).val("none");
    });
});

function GetFile(fileURL){
///Code to be filled
//window.open(fileURL);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文