Estoy feliz de que los navegadores se preocupen por salvarnos de secuencias de comandos intrusivas y similares. ¡No estoy contento con que IE ponga algo en el navegador que hace que una solución de estilo simple parezca un ataque de pirateo!
He usado un <span> para representar la entrada del archivo para poder aplicar el estilo apropiado a la <div> en lugar de la <input> (una vez más, debido a IE). Ahora, debido a esto, IE quiere mostrarle al Usuario una ruta con un valor que garantice que los pondrá en guardia y, al menos, temerosos (¡¿si no los asusta por completo?!) ... ¡MÁS IE-CRAP!
De todos modos, gracias a quienes publicaron la explicación aquí: Seguridad del navegador IE: agregando "fakepath" a la ruta del archivo en la entrada [type = "file"] , he reunido un reparador menor superior ...
El siguiente código hace dos cosas: corrige un error lte IE8 donde el evento onChange no se activa hasta que el campo de carga onBlur y actualiza un elemento con una ruta de archivo limpia que no asustará al Usuario.
// self-calling lambda to for jQuery shorthand "$" namespace
(function($){
// document onReady wrapper
$().ready(function(){
// check for the nefarious IE
if($.browser.msie) {
// capture the file input fields
var fileInput = $('input[type="file"]');
// add presentational <span> tags "underneath" all file input fields for styling
fileInput.after(
$(document.createElement('span')).addClass('file-underlay')
);
// bind onClick to get the file-path and update the style <div>
fileInput.click(function(){
// need to capture $(this) because setTimeout() is on the
// Window keyword 'this' changes context in it
var fileContext = $(this);
// capture the timer as well as set setTimeout()
// we use setTimeout() because IE pauses timers when a file dialog opens
// in this manner we give ourselves a "pseudo-onChange" handler
var ieBugTimeout = setTimeout(function(){
// set vars
var filePath = fileContext.val(),
fileUnderlay = fileContext.siblings('.file-underlay');
// check for IE's lovely security speil
if(filePath.match(/fakepath/)) {
// update the file-path text using case-insensitive regex
filePath = filePath.replace(/C:\\fakepath\\/i, '');
}
// update the text in the file-underlay <span>
fileUnderlay.text(filePath);
// clear the timer var
clearTimeout(ieBugTimeout);
}, 10);
});
}
});
})(jQuery);