js implements the size of uploaded files with specified precision, mainly using html and JavaScript, and run the following code in the browser, and follow the order of operation: select file->get file size.
Source code:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Get file size</title> </head> <body> <form type="testForm" > <input type="file" > <input type="button" value="Get file size" onclick="getSize();"/> </form> <script type="text/javascript"> function getSize(){ var elt=("testFile");//Get file object var len=[0].size/1024;//Get the file size and convert it into KB units, adopting the default accuracy ("File Size: "+(2)+"KB");//Output the file size of the specified precision, here the precision is two decimal places } </script> </body> </html>
The above is the entire content of the simple example of javascript that the editor brings to you to obtain the size of the uploaded file with specified accuracy. I hope everyone supports me~