環境
OS: Windows 7
ブラウザ: Chrome 63.0.3239.132, IE 11
ブラウザ: Chrome 63.0.3239.132, IE 11
jQuery( + file API )を利用したブラウザへのファイルドロップの方法(Shift-JIS)
【サンプル】ブラウザへのファイルドロップ(Shift-JIS)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
<!DOCTYPE html> <html> <head> <title>ブラウザへのファイルドロップ</title> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> <script> // ドロップエリアのグローバル変数 var droppable = null; //************************************************ // // 初期処理(イベントの登録等) // //************************************************ $( function(){ // ドロップエリアの設定(グローバル変数) droppable = $("#droppable"); // File API が利用できない場合はアラーをを出す if(!window.FileReader) { alert("File API が利用できません"); return false; } // ブラウザ自体のドロップイベント処理をキャンセルする droppable.bind("dragenter", cancelEvent); droppable.bind("dragover", cancelEvent); // ドロップ時のイベントを設定 droppable.bind("drop", droppFile); }); //************************************************ // // イベントをキャンセルする // //************************************************ function cancelEvent(event){ event.preventDefault(); event.stopPropagation(); return; } //************************************************ // // ドロップ時の処理 // //************************************************ function droppFile (event){ // ファイルが複数ドロップされた場合は最初のファイルのみを対象とする var file = event.originalEvent.dataTransfer.files[0]; // FileReaderの初期化 var fileReader = new FileReader(); // ファイルの読み込み(Shift-JIS) //fileReader.readAsText( file ); fileReader.readAsText( file, "Shift-JIS" ); fileReader.onload = function(){ //====================================== // ここで読み込んだファイルの処理を行う //====================================== droppable.text("ファイル名「" + file.name + "」\n\n" + fileReader.result); } // ブラウザデフォルトの処理をキャンセルする cancelEvent(event); return; } </script> </head> <body> <pre id="droppable" style="background-color:#ddd; padding: 30px;">ファイルドロップ</pre> </body> </html> |