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 }