Validate file size and type in a multiple input

后端 未结 1 1108
暖寄归人
暖寄归人 2021-01-28 13:52

i have 3 input file, i wanna make a javascript validation for 3 input file in one submit button form event onSubmit=\"\"

1条回答
  •  猫巷女王i
    2021-01-28 14:02

    Change type of submit button to normal button and use onclick handler for it by giving a id as upload,

    
        

    and your click event handler should be,

    $(document).ready(function(){
        $('#upload').click(function(){
            alert('hello');
            $('input[type="file"]').each(function(){
                var thisFile = $(this);
                var fileSize = thisFile[0].files[0].size;
                alert(fileSize);
            });
            $('form#dataPribadi').submit();
        });
    });
    

    UPDATED FIDDLE

    0 讨论(0)
提交回复
热议问题