使用jQuery检查提交的总帖子数据大小

时间:2016-09-15 05:00:20

标签: jquery

如果提交的总帖子数据大小超过1mb,我想显示提醒。这是我的代码。请给我一个解决方案。

function myfunction() {
    var ttlSize = 0;

    $('#validate_me').find('[type="file"]').each(function() {
        ttlSize += this.files[0].size;
    });

    if (ttlSize > 1 * 1048576) { // 1MB
        alert("size will exceed post max size"); // this will exceed post_max_size PHP setting, now handle...
    } else if ($("#validate_me").not("[type='file']").serialize().length) {
        alert("size will exceed max_file_uploads size"); // this will exceed max_file_uploads PHP setting, now handle...
        return false;
    }
}

0 个答案:

没有答案