Created
November 21, 2012 10:26
-
-
Save houoop/4124149 to your computer and use it in GitHub Desktop.
js:image-upload-type-filter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (!/\.(gif|jpg|jpeg|png|GIF|JPG|PNG)$/.test(ths.value)) { | |
alert("你选择的不是图片文件"); | |
ths.value = ""; | |
return false; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment