为什么我的Excel文件不会在href标签中下载?

时间:2017-09-28 17:32:43

标签: excel tags href

以下是一些href标签。

$(document).ready(function () {
    var allInputs = $(':text:visible'); //(1)collection of all the inputs I want (not all the inputs on my form)
    $(":text").on("keydown", function () {//(2)When an input field detects a keydown event
        if (event.keyCode == 13) {
            event.preventDefault();
            var nextInput = allInputs.get(allInputs.index(this) + 1);//(3)The next input in my collection of all inputs
            if (nextInput) {
                nextInput.focus(); //(4)focus that next input if the input is not null
            }
        }
    });
});

所有docx文件都可以正常工作,但Excel文件不行。我尝试将它们更改为.xls(旧版本),但我仍然收到此错误:

404 - 找不到文件或目录。 您要查找的资源可能已被删除,名称已更改或暂时不可用。

我知道文件在那里且路径正确

0 个答案:

没有答案