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。
看看這個:http://adamsanderson.github.io/jQuery-File-Validator/ –
http://stackoverflow.com/a/10427219/1283215 –