JQuery on Change Event Скачать файл - PullRequest
1 голос
/ 21 апреля 2011

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
}

Я довольно сильно застрял .. Как начать загрузку файла .. Мне нужно заполнить код для функции Get File ...

1 Ответ

0 голосов
/ 21 апреля 2011
$(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);
}
...