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>

Ответ 1

Это просто так просто, как писать:

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

Во всяком случае, я предлагаю использовать атрибут name или ID для выбора вашего ввода. И с событием это должно выглядеть так:

$('input[type=file]').change(function(e){
  $in=$(this);
  $in.next().html($in.val());
});

Ответ 2

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

Этот код не будет показывать C:\fakepath\ перед именем файла в Google Chrome в случае использования .val().

Ответ 3

Самый простой способ - просто использовать следующую строку 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, вы просто используете команды, перечисленные мной.

Ответ 4

Я использовал следующий, который работал правильно.

$('#fileAttached').attr('value', $('#attachment').val())

Ответ 5

<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>

Ответ 6

//get file input
var $el = $('input[type=file]');
//set the next siblings (the span) text to the input value 
$el.next().text( $el.val() );

Ответ 7

Добавьте скрытую кнопку reset:

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

Нажмите кнопку reset, чтобы очистить ввод.

$("#Reset1").click();

Ответ 8

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

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

        reader.readAsDataURL(fileName.files[0]);
    }
}
</script>