JavaScript file upload size validation

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

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

13条回答
  •  醉梦人生
    2020-11-22 01:03

    I ran across this question, and the one line of code I needed was hiding in big blocks of code.

    Short answer: this.files[0].size

    By the way, no JQuery needed.

提交回复
热议问题