假设表单为formPost,上传图像域为photo_file,允许上传的图像类型为jpg, bmp, gif if (document.formPost.photo_file.value.substr(document.formPost.photo_file.value.length - 4, 4).toLowerCase().match("^.jpg|.bmp|.gif$") == null) { alert("图像类型不是JPG,BMP,GIF类型"); }