Hej jag undrar om det är någon som vet om man med javascript kan kolla storleken på en fil som man ska ladda upp till servern med en Vet inte om denna sida kan vara till någon hjälp: Tack för alla svar. Det finns väl någon fulmetod du kan använda. Är det något ständigt återkommande filformat, eller rör det sig om olika format?Fil storlek
input type="file".
Går det på något sätt att mäta det innan man submittar sidan.
Mvh
KjellSv: Fil storlek
http://www.quirksmode.org/js/filesize.html
<B>EDIT:</B>
Hittade en bättre:<html>
<head>
<script language="JavaScript">
function A()
{
var oas = new ActiveXObject("Scripting.FileSystemObject");
var d = document.a.b.value;
var e = oas.getFile(d);
var f = e.size;
alert(f + " bytes");
}
</script>
</head>
<body>
<form name="a">
<input type="file" name="b">
<input type="button" name="c" value="SIZE" onClick="A();">
</form>
</body>
</html>
<B>EDIT 2:</B>
Javascript does not allow operations on files, and so it is not possible
to check the size of a file on the client side.
Most people checking the size of a file will want to do so before the
user uploads the file to their server. You cannot actually do this
until the file upload is in progress.
You can put a MAXFILESIZE HTML tag in the <INPUT TYPE="file"> tag... Or
you can check the filesize once it's uploaded to PHP and simply not
process the upload if it's too big or too small (the file will be
automatically deleted after your script exits)....
Sv: Fil storlek
Jag provade med den inbyggda activex komponenten men det fanns inget stöd för den i servern.Sv: Fil storlek