ファイルパスを入力できるフォームがあります。彼らが入っている道が写真を指していることを確認したいので、これがうまくいくと思ったものです。
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");
}
しかし、これは機能しません。チェックするファイルを1種類だけ選択すると、正しく機能するため、ifステートメントまで追跡しました。ですから、あなたへの私の質問は、これを正しく機能させるために何を変更する必要があるかということです。私はこれを約3時間続けていますが、それは私を怒らせています。事前にすべての助けをありがとう。