ブラウザが煩わしいスクリプトなどから私たちを救ってくれることを嬉しく思います。IEがブラウザーに何かを入れて、単純なスタイル修正をハック攻撃のように見せることに不満があります!
<入力>の代わりに<分割>に適切なスタイルを適用できるように、ファイル入力を表すために<スパン>を使用しました(もう一度、IEのため)。さて、このIEが原因で、ユーザーに警戒を怠らず最低限の不安を払うことが保証されている値を持つパスを表示したいと考えています(完全に怖がらせない限り!)。詳細IE-CRAP!
とにかく、ここに説明を投稿した人々に感謝します: IEブラウザーのセキュリティ:input [type = "file"]のファイルパスに "fakepath"を追加して、マイナーなフィクサーアッパーをまとめました...
以下のコードは2つのことを実行します。これは、アップロードフィールドのonBlurまでonChangeイベントが発生せず、ユーザーを怖がらせないクリーンなファイルパスで要素を更新するという、IE8のバグを修正します。
// 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);