您好我正在使用jquery编写文件,它在所有浏览器中工作但在IE中它返回false
请帮助我解决此问题,我的代码如下所示
$("#Button").click(function(){
if(fileSelected($("#file1"))&&fileSelected($("#file2")))
{
//do something
}
else{
return false;
}
return false;
});
答案 0 :(得分:0)
另一个问题解决方法不同:jQuery: get the file name selected from <input type="file" />这对你有用吗?如果该答案中的val是空字符串,则表示没有选择文件。