html中創(chuàng)建一個img標簽蓉坎,name屬性
<img src="" name="image">
js代碼:
var _URL = window.URL || window.webkitURL;
$("#bannerfile").change(function (e) {
var file, img;
if ((file = this.files[0])) {
img = new Image();
img.onload = function () {
if(this.width < 1920 || this.height < 600){
alert("圖片不符合大小,請重新上傳");
}
};
img.src = _URL.createObjectURL(file);
}
});
$("#bannerfile")是input type="file
的控件
不積跬步無以至千里