我有以下几点:
<input id="user_profile_pic" name="user[profile_pic]" type="file">
在服务器上,我检查一下,确定它是一个图像,但我想先检查客户端.
jQuery如何选择的文件输入文件不是gif,jpg,png或bmp?
谢谢
@R_502_323@
你想检查一下这个元素的值是什么,其中的一些是:
$("#user_profile_pic").change(function() { var val = $(this).val(); switch(val.substring(val.lastIndexOf('.') + 1).toLowerCase()){ case 'gif': case 'jpg': case 'png': alert("an image"); break; default: $(this).val(''); // error message here alert("not an image"); break; } });
编辑