Estou feliz que os navegadores tenham o cuidado de nos salvar de scripts intrusivos e similares. Não estou feliz com o IE colocando algo no navegador que faz uma simples correção de estilo parecer um ataque de hacker!
Usei um <span> para representar a entrada do arquivo, para que eu pudesse aplicar o estilo apropriado ao <div> em vez do <input> (mais uma vez, por causa do IE). Agora, devido a isso, o IE quer mostrar ao usuário um caminho com um valor garantido para colocá-lo em guarda e no mínimo apreensivo (se não totalmente assustá-lo?!) ... MAIS IE-CRAP!
De qualquer forma, graças a quem postou a explicação aqui: IE Browser Security: anexando "fakepath" ao caminho do arquivo na entrada [type = "file"] , reuni um pequeno fixador-superior ...
O código abaixo faz duas coisas - ele corrige um bug do lte IE8 em que o evento onChange não é acionado até o campo OnBlur do upload e atualiza um elemento com um caminho de arquivo limpo que não assusta o usuário.
// 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);