Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Javascript可以获取文件大小(以字节为单位)?
我需要在上传图片之前,了解什么是图片大小,可能吗?
获取<input type="file">元素的句柄,然后:
<input type="file">
var file = fileinput.files && fileinput.files[0]; if( file ) { console.log( file.size, file.type ); } else if( !("files" in fileInput)) { // not supported } else { //No file selected }