No sé por que no me funciona esta simple función. Lo que pretendo es que me diga el número de ficheros que voy a subir al servidor.
Código HTML:
<!DOCTYPE html> <html> <head> <script> window.onload = function() { var btn = document.getElement.ById("btn"); btn.onclick = function() { var imagen = document.getElement.ById("imagen").files; alert(imagen.length); document.formulario.submit(); } } </script> </head> <body> <form action="" method="post" name="formulario" enctype="multipart/form-data"> Select images: <input type="file" name="imagen" multiple id="imagen"> <button type="submit" id="btn">enviar</button> </form> <p>Try selecting more than one file when browsing for files.</p> </body> </html>
Graciasssss