Ejemplo: cómo escanear una carpeta en busca de documentos con javascript
var dir = "/videos";
var fileextension = ".mp4";
$.ajax({
//This will retrieve the contents of the folder if the folder is configured as 'browsable'
url: dir,
success: function (data) {
// List all mp4 file names in the page
$(data).find("a:contains("https://foroayuda.es/ + fileextension + ")").each(function () {
var filename = this.href.replace(window.location.host, "").replace("http:///", "");
$("body").append($("<img src="https://foroayuda.es/ + dir + filename + "></img>"));
});
}
});
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)