2013-10-15 94 views
0

我必須驗證圖像上傳字段使用jQuery。 有沒有什麼辦法可以將圖像大小限制爲最大5MB?Jquery驗證圖像大小

我的工作形象的驗證方法如下: jQuery.validator.addMethod("imagesonly", function (value, element) { return this.optional(element) || /([^\s]+(?=\.(jpg|gif|png))\.\2)/gm.test(value); }, "Please enter valid image.");

我需要在此添加代碼,從而限制了圖像尺寸最大爲5 MB。

+0

看看這個:http://adamsanderson.github.io/jQuery-File-Validator/ –

+0

http://stackoverflow.com/a/10427219/1283215 –

回答

-1

試試這個

var ext = $('#my_file_field').val().split('.').pop().toLowerCase(); 
if($.inArray(ext, ['gif','png','jpg','jpeg']) == -1) { 
alert('invalid extension!'); 
}