dsorecdf78171 2015-10-05 10:38
浏览 26
已采纳

如何在每次上传中验证图像大小

I'm trying to upload the images which is greater than 900 pixels. so i do validate when upload. I have the plus sign when we click this another file button will appear.

The first input box values only i got. I couldn't get another files.

 <input type="file" id="upload_profile" class="upload_profile" name="upload_profile[]" />

Script:

var _URL = window.URL || window.webkitURL;
$(".upload_profile").change(function(e) {
var file, img;
if ((file = this.files[0])) {
    img = new Image();
    img.onload = function() {
        alert(this.width + " " + this.height);
    };
    img.onerror = function() {
        alert( "not a valid file: " + file.type);
    };
    img.src = _URL.createObjectURL(file);
}
});
  • 写回答

1条回答 默认 最新

  • dongpenggan6812 2015-10-05 10:44
    关注

    As other elements are not there in DOM when event is attached, you need to use event delegation. Event delegation allows us to attach a single event listener, to a parent element, that will fire for all descendants matching a selector, whether those descendants exist now or are added in the future.

    var _URL = window.URL || window.webkitURL;
    $(document).on('change', '.upload_profile', function () {
    if (this.value) {
        var file = this.files[0];
        var img = new Image();
        img.onload = function () {
            alert(this.width + " " + this.height);
        };
        img.onerror = function () {
            alert("not a valid file: " + file.type);
        };
        img.src = _URL.createObjectURL(file);
    }
    });
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
    <input type="file" class="upload_profile" name="upload_profile[]" /><br><br>
    <input type="file" class="upload_profile" name="upload_profile[]" /><br><br>
    <input type="file" class="upload_profile" name="upload_profile[]" /><br><br>

    </div>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 stm32代码移植没反应
  • ¥15 matlab基于pde算法图像修复,为什么只能对示例图像有效
  • ¥100 连续两帧图像高速减法
  • ¥15 组策略中的计算机配置策略无法下发
  • ¥15 如何绘制动力学系统的相图
  • ¥15 对接wps接口实现获取元数据
  • ¥20 给自己本科IT专业毕业的妹m找个实习工作
  • ¥15 用友U8:向一个无法连接的网络尝试了一个套接字操作,如何解决?
  • ¥30 我的代码按理说完成了模型的搭建、训练、验证测试等工作(标签-网络|关键词-变化检测)
  • ¥50 mac mini外接显示器 画质字体模糊