web-dev-qa-db-ja.com

jQuery:<input type = "file" />から選択されたファイル名を取得する

このコードはIEでは(Firefoxでもテストしないで)動作するはずですが、動作しません。私が欲しいのは、添付ファイルの名前を表示することです。助けがありますか?

<html>
<head>
  <title>example</title>    
  <script type="text/javascript" src="../js/jquery.js"></script>
  <script type="text/javascript">  
        $(document).ready( function(){            
      $("#attach").after("<input id='fakeAttach' type='button' value='attach a file' />");      
      $("#fakeAttach").click(function() {            
        $("#attach").click();        
        $("#maxSize").after("<div id='temporary'><span id='attachedFile'></span><input id='remove' type='button' value='remove' /></div>");        
        $('#attach').change(function(){
          $("#fakeAttach").attr("disabled","disabled");          
          $("#attachedFile").html($(this).val());
        });        
        $("#remove").click(function(e){
          e.preventDefault();
          $("#attach").replaceWith($("#attach").clone());
          $("#fakeAttach").attr("disabled","");
          $("#temporary").remove();
        });
      })
    }); 
  </script> 
</head>
<body>
  <input id="attach" type="file" /><span id="maxSize">(less than 1MB)</span>    
</body>
</html>
88
ConNen

書くのと同じくらい簡単です:

$('input[type=file]').val()

とにかく、名前またはID属性を使用して入力を選択することをお勧めします。イベントでは、次のようになります。

$('input[type=file]').change(function(e){
  $in=$(this);
  $in.next().html($in.val());
});
145
Thinker
$('input[type=file]').change(function(e){
    $(this).parents('.parent-selector').find('.element-to-paste-filename').text(e.target.files[0].name);
});

このコードは、.val()を使用する場合、Googleのファイル名の前にC:\fakepath\ Chromeを表示しません。

19
Anatolii Pazhyn

最も簡単な方法は、次のjqueryの行を使用することです。これを使用すると、/fakepathナンセンスを取得せず、アップロードされたファイルをすぐに取得できます。

$('input[type=file]')[0].files[0]; // This gets the file
$('#idOfFileUpload')[0].files[0]; // This gets the file with the specified id

その他の便利なコマンドは次のとおりです:

ファイルの名前を取得するには:

$('input[type=file]')[0].files[0].name; // This gets the file name

ファイルのタイプを取得するには:

PNGをアップロードすると、image/pngが返されます

$("#imgUpload")[0].files[0].type

ファイルのサイズ(バイト単位)を取得するには:

$("#imgUpload")[0].files[0].size

また、これらのコマンドを使用する必要はありませんon('change'、いつでも値を取得できます。たとえば、ファイルをアップロードして、ユーザーがuploadをクリックすると、コマンドIを使用するだけです。リストされています。

19
James111
<input onchange="readURL(this);"  type="file" name="userfile" />
<img src="" id="blah"/>
<script>
 function readURL(input) {
    if (input.files && input.files[0]) {
        var reader = new FileReader();

        reader.onload = function (e) {
            $('#blah')
                    .attr('src', e.target.result)
                    .width(150).height(200);
        };

        reader.readAsDataURL(input.files[0]);
        //console.log(reader);
        //alert(reader.readAsDataURL(input.files[0]));
    }
}
</script>
4
Anil Gupta

私は正しく動作する以下を使用していました。

$('#fileAttached').attr('value', $('#attachment').val())
3
ihmar
//get file input
var $el = $('input[type=file]');
//set the next siblings (the span) text to the input value 
$el.next().text( $el.val() );
2
redsquare

非表示のリセットボタンを追加します。

<input id="Reset1" type="reset" value="reset" class="hidden" />

入力をクリアするには、リセットボタンをクリックします。

$("#Reset1").click();
1
daniel ye