如何在bootstrap中验证高度和宽度?任何身体PLZ帮助我...
company_logo: {
validators: {
file: {
extension: 'jpeg,png,jpg',
type: 'image/jpeg,image/png,image/jpg',
maxSize: 100024, // 2048 * 1024
message: 'The selected file is not valid'
}
}
}
答案 0 :(得分:0)
这个问题已经回答here。 使用HTML5,您可以检查所选图像文件的高度和宽度。
var _URL = window.URL || window.webkitURL;
$("#file").change(function(e) {
var image, file;
if ((file = this.files[0])) {
image = new Image();
image.onload = function() {
alert("The image width is " +this.width + " and image height is " + this.height);
};
image.src = _URL.createObjectURL(file);
}
});
以下是该页面的一个小提琴:demo