JavaScript file upload size validation

后端 未结 13 2156
眼角桃花
眼角桃花 2020-11-22 00:23

Is there any way to check file size before uploading it using JavaScript?

13条回答
  •  你的背包
    2020-11-22 01:20

    If you set the Ie 'Document Mode' to 'Standards' you can use the simple javascript 'size' method to get the uploaded file's size.

    Set the Ie 'Document Mode' to 'Standards':

    
    

    Than, use the 'size' javascript method to get the uploaded file's size:

    
    

    It works for me.

提交回复
热议问题