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
}
我几乎陷入困境..如何启动文件下载..我需要填写获取文件功能的代码......
答案 0 :(得分:0)
$(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);
}