Hola, encontramos la respuesta a lo que buscabas, has scroll y la hallarás un poco más abajo.
Ejemplo 1: javascript: obtenga el nombre de archivo y la extensión de input type = file
//Use lastIndexOf to get the last as an index and use substr to get the remaining string starting from the last index of functiongetFile(filePath)return filePath.substr(filePath.lastIndexOf('\')+1).split('.')[0];functiongetoutput()
outputfile.value=getFile(inputfile.value);
extension.value= inputfile.value.split('.')[1];<input id='inputfile' type='file' name='inputfile' onChange='getoutput()'><br>OutputFilename<input id='outputfile' type='text' name='outputfile'><br>Extension<input id='extension' type='text' name='extension'>
Ejemplo 2: obtener el nombre del archivo cargado en js
$('input[type="file"]').change(function(e)var fileName = e.target.files[0].name;$(e.target).parent('div').find('.form-file-text').html(fileName)// Inside find search element where the name should display (by Id Or Class));
Ejemplo 3: obtener el nombre del archivo cargado
fake_path=document.getElementById('FileUpload1').valuealert(fake_path.split("\").pop())
Ejemplo 4: js obtiene el nombre de archivo que cargó
var fu1 =document.getElementById("FileUpload1");alert("You selected "+ fu1.value);
Puntuaciones y reseñas
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)