Desejo alterar o texto padrão no botão " Choose File
" quando usarmos input="file"
.
Como posso fazer isso? Além disso, como você pode ver na imagem, o botão está no lado esquerdo do texto. Como posso colocá-lo no lado direito do texto?
Desejo alterar o texto padrão no botão " Choose File
" quando usarmos input="file"
.
Como posso fazer isso? Além disso, como você pode ver na imagem, o botão está no lado esquerdo do texto. Como posso colocá-lo no lado direito do texto?
Respostas:
Cada navegador possui sua própria versão do controle e, como tal, você não pode alterar o texto ou a orientação do controle.
Existem alguns "tipos de" hacks que você pode querer experimentar se quiser um html/css solução em vez de um Flash ou luz cinzasolução.
http://www.quirksmode.org/dom/inputfile.html
http://www.shauninman.com/archive/2007/09/10/styling_file_inputs_with_css_and_the_dom
Pessoalmente, como a maioria dos usuários segue o navegador de sua escolha e, portanto, provavelmente está acostumada a ver o controle na versão padrão, provavelmente ficaria confusa se visse algo diferente (dependendo dos tipos de usuários com os quais você está lidando) .
Use o "for"
atributo de label
para input
.
<div>
<label for="files" class="btn">Select Image</label>
<input id="files" style="visibility:hidden;" type="file">
</div>
Abaixo está o código para buscar o nome do arquivo enviado
$("#files").change(function() {
filename = this.files[0].name
console.log(filename);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div>
<label for="files" class="btn">Select Image</label>
<input id="files" style="visibility:hidden;" type="file">
</div>
display:none
pode ser usado no INPUT para não usar o espaço não necessário.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<button style="display:block;width:120px; height:30px;" onclick="document.getElementById('getFile').click()">Your text here</button>
<input type='file' id="getFile" style="display:none">
</body>
</html>
Isso pode ajudar alguém no futuro, você pode estilizar o rótulo da entrada conforme desejar e colocar o que quiser dentro dela e ocultar a entrada com nenhuma exibição.
Funciona perfeitamente em cordova com iOS
<link href="https://cdnjs.cloudflare.com/ajax/libs/ratchet/2.0.2/css/ratchet.css" rel="stylesheet"/>
<label for="imageUpload" class="btn btn-primary btn-block btn-outlined">Seleccionar imagenes</label>
<input type="file" id="imageUpload" accept="image/*" style="display: none">
Não é possível. Caso contrário, pode ser necessário usar o controle de upload do Silverlight ou Flash.
Aqui, como você pode fazer isso:
jQuery:
$(function() {
$("#labelfile").click(function() {
$("#imageupl").trigger('click');
});
})
css
.file {
position: absolute;
clip: rect(0px, 0px, 0px, 0px);
display: block;
}
.labelfile {
color: #333;
background-color: #fff;
display: inline-block;
margin-bottom: 0;
font-weight: 400;
text-align: center;
vertical-align: middle;
cursor: pointer;
background-image: none;
white-space: nowrap;
padding: 6px 8px;
font-size: 14px;
line-height: 1.42857143;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
Código HTML:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div style="margin-top:4px;">
<input name="imageupl" type="file" id="imageupl" class="file" />
<label class="labelfile" id="labelfile"><i class="icon-download-alt"></i> Browse File</label>
</div>
<button class="styleClass" onclick="document.getElementById('getFile').click()">Your text here</button>
<input type='file' id="getFile" style="display:none">
Este ainda é o melhor até agora
Usando o Bootstrap, você pode fazer isso como o código abaixo.
<!DOCTYPE html>
<html lang="en">
<head>
<style>
.btn-file {
position: relative;
overflow: hidden;
}
.btn-file input[type=file] {
position: absolute;
top: 0;
right: 0;
min-width: 100%;
min-height: 100%;
font-size: 100px;
text-align: right;
filter: alpha(opacity=0);
opacity: 0;
outline: none;
background: white;
cursor: inherit;
display: block;
}
</style>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<span class="btn btn-file">Upload image from here<input type="file">
</body>
</html>
Criei um script e publiquei no GitHub: get selectFile.js Fácil de usar, fique à vontade para clonar.
HTML
<input type=file hidden id=choose name=choose>
<input type=button onClick=getFile.simulate() value=getFile>
<label id=selected>Nothing selected</label>
JS
var getFile = new selectFile;
getFile.targets('choose','selected');
DEMO
Atualização 2017:
Eu fiz pesquisas sobre como isso poderia ser alcançado. E a melhor explicação / tutorial está aqui: https://tympanus.net/codrops/2015/09/15/styling-customizing-file-inputs-smart-way/
Escreverei o resumo aqui, caso fique indisponível. Então você deve ter HTML:
<input type="file" name="file" id="file" class="inputfile" />
<label for="file">Choose a file</label>
Em seguida, oculte a entrada com CSS:
.inputfile {
width: 0.1px;
height: 0.1px;
opacity: 0;
overflow: hidden;
position: absolute;
z-index: -1;}
Em seguida, estilize o rótulo:
.inputfile + label {
font-size: 1.25em;
font-weight: 700;
color: white;
background-color: black;
display: inline-block;
}
Em seguida, opcionalmente, você pode adicionar JS para exibir o nome do arquivo:
var inputs = document.querySelectorAll( '.inputfile' );
Array.prototype.forEach.call( inputs, function( input )
{
var label = input.nextElementSibling,
labelVal = label.innerHTML;
input.addEventListener( 'change', function( e )
{
var fileName = '';
if( this.files && this.files.length > 1 )
fileName = ( this.getAttribute( 'data-multiple-caption' ) || '' ).replace( '{count}', this.files.length );
else
fileName = e.target.value.split( '\\' ).pop();
if( fileName )
label.querySelector( 'span' ).innerHTML = fileName;
else
label.innerHTML = labelVal;
});
});
Mas, na verdade, basta ler o tutorial e baixar a demo, é muito bom.
Eu usaria um button
para acionar o input
:
<button onclick="document.getElementById('fileUpload').click()">Open from File...</button>
<input type="file" id="fileUpload" name="files" style="display:none" />
Rápido e limpo.
Você pode usar essa abordagem, ela funciona mesmo que muitas entradas de arquivos.
const fileBlocks = document.querySelectorAll('.file-block')
const buttons = document.querySelectorAll('.btn-select-file')
;[...buttons].forEach(function (btn) {
btn.onclick = function () {
btn.parentElement.querySelector('input[type="file"]').click()
}
})
;[...fileBlocks].forEach(function (block) {
block.querySelector('input[type="file"]').onchange = function () {
const filename = this.files[0].name
block.querySelector('.btn-select-file').textContent = 'File selected: ' + filename
}
})
.btn-select-file {
border-radius: 20px;
}
input[type="file"] {
display: none;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="file-block">
<button class="btn-select-file">Select Image 1</button>
<input type="file">
</div>
<br>
<div class="file-block">
<button class="btn-select-file">Select Image 2</button>
<input type="file">
</div>
Aqui está como é feito o bootstrap, apenas você deve colocar a entrada original em algum lugar ... idk na cabeça e excluir o <br> se você o tiver, porque ele está apenas oculto e está ocupando espaço de qualquer maneira :)
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
</head>
<label for="file" button type="file" name="image" class="btn btn-secondary">Secondary</button> </label>
<input type="file" id="file" name="image" value="Prebrskaj" style="visibility:hidden;">
<footer>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
</footer>
Deixe-me adicionar um hack que eu usei. Queria ter uma seção que permitisse arrastar e soltar arquivos, e que a seção de arrastar e soltar fosse clicável junto com o botão de upload original.
Aqui está como era quando eu terminei (menos a capacidade de arrastar e soltar, há muitos tutoriais sobre como fazer isso).
E então eu criei uma série de postagens de blog principalmente sobre botões de upload de arquivos.
Ok, maneira css pura e simples de criar seu arquivo de entrada personalizado.
Use etiquetas, mas como você sabe das respostas anteriores, a etiqueta não invoca a função onclick no firefox, pode ser um bug, mas não importa com o seguinte.
<label for="file" class="custom-file-input"><input type="file" name="file" class="custom-file-input"></input></label>
O que você faz é estilizar o rótulo para ter a aparência desejada.
.custom-file-input {
color: transparent;/* This is to take away the browser text for file uploading*/
/* Carry on with the style you want */
background: url(../img/doc-o.png);
background-size: 100%;
position: absolute;
width: 200px;
height: 200px;
cursor: pointer;
top: 10%;
right: 15%;
}
Agora, basta ocultar o botão de entrada real, mas você não pode configurá-lo para visability: hidden
Então, torne invisível definindo opacity: 0;
input.custom-file-input {
opacity: 0;
position: absolute;/*set position to be exactly over your input*/
left: 0;
top: 0;
}
Agora, como você deve ter notado, eu tenho a mesma classe no meu rótulo e no meu campo de entrada, é porque eu quero que os dois tenham o mesmo estilo, portanto, sempre que você clicar no rótulo, você estará realmente clicando no invisível campo de entrada.
Minha solução ...
HTML:
<input type="file" id="uploadImages" style="display:none;" multiple>
<input type="button" id="callUploadImages" value="Select">
<input type="button" id="uploadImagesInfo" value="0 file(s)." disabled>
<input type="button" id="uploadProductImages" value="Upload">
Jquery:
$('#callUploadImages').click(function(){
$('#uploadImages').click();
});
$('#uploadImages').change(function(){
var uploadImages = $(this);
$('#uploadImagesInfo').val(uploadImages[0].files.length+" file(s).");
});
Isso é apenas o mal: D
$(document).ready(function () {
$('#choose-file').change(function () {
var i = $(this).prev('label').clone();
var file = $('#choose-file')[0].files[0].name;
$(this).prev('label').text(file);
});
});
.custom-file-upload{
background: #f7f7f7;
padding: 8px;
border: 1px solid #e3e3e3;
border-radius: 5px;
border: 1px solid #ccc;
display: inline-block;
padding: 6px 12px;
cursor: pointer;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
can you try this
<label for="choose-file" class="custom-file-upload" id="choose-file-label">
Upload Document
</label>
<input name="uploadDocument" type="file" id="choose-file"
accept=".jpg,.jpeg,.pdf,doc,docx,application/msword,.png" style="display: none;" />