我正在尝试在 javascript 中验证文件扩展名。当我像这样在 if 语句中只使用一个参数时
if(ext!='png' ){
bodyAppend("err","Incorrect file type");
bodyAppend("br","");
}
代码有效。但是如果我添加这样的 or 语句
if(ext!='png' || ext!='jpg'){
bodyAppend("err","Incorrect file type");
bodyAppend("br","");
}
该代码不起作用,并且始终返回 true。