我有一个表格,人们可以在其中输入文件路径。我想确保他们进入的路径指向图片,所以这就是我认为可行的方法。
function checkExt()
{
var extension= /* I know that the code to cut the extension off of the file
is working correctly so for now let's just go with it ok */
if(extension!="jpg" || "gif" || "bmp" || "png" || "whatever else")
alert("The file extension you have entered is not supported");
}
但这不起作用。我已将其跟踪到 if 语句,因为如果我只选择一种文件进行检查,那么它将正常工作。所以我问你的问题是,我到底要改变什么才能让这件事正常工作。我已经做了大约三个小时了,这让我发疯了。感谢您提前提供的所有帮助。