标签:read alert image images png doc data round back
imgReady(data.object, function () {
    if(this.width < 360 || this.height < 360) {
        document.getElementById("myImageShow").src = "../../public/img/background.png";
        alert("图片大小不能低于360*360PX");
    }
    if(this.width != this.height) {
        document.getElementById("myImageShow").src = "../../public/img/background.png";
        alert("上传图片比例为1:1");
    }
});标签:read alert image images png doc data round back
原文地址:https://www.cnblogs.com/wangbiubiu/p/9328321.html