-1

嗨,我正在编写使用 jquery 选择的文件,它可以在所有浏览器中运行,但在 IE 中它返回 false

请帮助我如何得到这个问题,我的代码如下所示

$("#Button").click(function(){

    if(fileSelected($("#file1"))&&fileSelected($("#file2")))
    {
      //do something
    }
    else{          
      return false;
    }
    return false;
});
4

1 回答 1

0

在另一个问题中解决的方式不同:jQuery: get the file name selected from <input type="file" />这对你有用吗?如果该答案中的 val 为空字符串,则表示未选择任何文件。

于 2013-03-06T09:49:49.753 回答