假设表单为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类型");
}
[ 此贴被XChinux在2005-11-08 00:22重新编辑 ]