更改输入类型=“文件”中的默认文本?


182

我想改变按钮默认文本是“ Choose File”当我们使用input="file"

在此处输入图片说明

我怎样才能做到这一点?您也可以在图像中看到按钮位于文本的左侧。如何将其放在文本的右侧?


是否可以选择将此文本更改为变量?
kicaj 2013年

1
在这里,ParPar的答案可能是您想要的:stackoverflow.com/questions/1944267/…
Aniket Suryavanshi 2014年



Answers:


49

每个浏览器都有其自己的控件表示形式,因此您无法更改控件的文本或方向。

如果您想尝试一些“骇客”骇客, / 解决方案,而不是Flash或 解。

http://www.quirksmode.org/dom/inputfile.html

http://www.shauninman.com/archive/2007/09/10/styling_file_inputs_with_css_and_the_dom

就个人而言,由于大多数用户坚持使用他们选择的浏览器,因此可能习惯于以默认格式查看控件,因此如果看到的内容有所不同,他们可能会感到困惑(取决于您所处理的用户类型) 。


176

使用"for"的属性labelinput

<div>
  <label for="files" class="btn">Select Image</label>
  <input id="files" style="visibility:hidden;" type="file">
</div>
以下是获取上传文件名称的代码

$("#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>


19
display:none可以在INPUT上使用,因此不会使用不需要的空间。
DJon大师16年

2
谢谢。这完美地工作了,这正是我想要的。
克里斯

在装有Chrome,FF和Safari的Mac上可以正常工作。如果在IE上也能做到这一点,那么这是设置文件输入按钮样式的最佳和最简单的选择。谢谢!
波德

5
效果很好,只有一点点的负面影响是用户看不到选择时已选择的文件名。
luke_mclachlan

2
@Mike更新了帖子以获取文件名
algometrix

27

这可能对将来的人有所帮助,您可以根据需要设置输入标签的样式,并在其中放置所需的任何内容,并在不显示的情况下隐藏输入。

它在iOS的Cordova上完美运行

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


1
到目前为止,我发现的最佳解决方案!+1
danyo '18

27

我认为这是您想要的:

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


7

这不可能。否则,您可能需要使用Silverlight或Flash上​​传控件。


1
这是不可能的?更改文字或在右侧或同时在两者上放置按钮?
哈里·乔伊,

13
我对此表示赞成,因为我认为对这个答案不赞成。基本上不可能更改本机文件输入按钮的文本。“可能的解决方案”都是黑客或变通办法。
彼得·李,

10
@PeterLee-黑客解决方案,有些甚至遵循W3C规范。
德里克·朕会功夫,2014年

3

这里是你怎么做的:

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

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>

3
<button class="styleClass" onclick="document.getElementById('getFile').click()">Your text here</button>
<input type='file' id="getFile" style="display:none">

到目前为止仍然是最好的


2

使用Bootstrap,您可以像下面的代码那样执行此操作。

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

此代码不会将选择的文件打印回网页。
tale852150

2

我制作了一个脚本并将其发布在GitHub上:get selectFile.js 易于使用,随时可以克隆。


的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');


演示

jsfiddle.net/Thielicious/4oxmsy49/


2

2017年更新:

我已经研究了如何实现这一目标。最好的解释/教程在这里:https//tympanus.net/codrops/2015/09/15/styling-customizing-file-inputs-smart-way/

我将在此处编写摘要,以防万一它不可用。因此,您应该具有HTML:

<input type="file" name="file" id="file" class="inputfile" />
<label for="file">Choose a file</label>

然后使用CSS隐藏输入:

.inputfile {
width: 0.1px;
height: 0.1px;
opacity: 0;
overflow: hidden;
position: absolute;
z-index: -1;}

然后设置标签样式:

.inputfile + label {
font-size: 1.25em;
font-weight: 700;
color: white;
background-color: black;
display: inline-block;
}

然后可以选择添加JS以显示文件名:

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;
});
});

但实际上只是阅读了教程并下载了演示,这真的很好。


1

我会使用button来触发input

<button onclick="document.getElementById('fileUpload').click()">Open from File...</button>
<input type="file" id="fileUpload" name="files" style="display:none" />

快速干净。


1

您可以使用这种方法,即使输入了很多文件也可以使用。

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>


我喜欢这种方法,但是对我来说,“选择文件”文本没有显示,所以知道是什么问题。我是google chrome
N Khan

1

这应该工作:

input.*className*::-webkit-file-upload-button {
  *style content..*
}

1

这是使用引导程序完成的,只有您应该将原始输入放在... idk的头部,并删除<br>(如果有),因为它只有隐藏且占用空间:)

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


0

让我添加一个我曾经使用过的技巧。我想要一个允许您拖放文件的部分,并且希望该拖放部分与原始的上载按钮一起可单击。

这是它的样子我完成后的(减去拖放功能后,有很多关于该操作的教程)。

然后,我实际上创建了一系列博客文章,主要涉及文件上传按钮。


0

确定创建自定义输入文件的非常简单的纯CSS方法。

使用标签,但是正如您从以前的答案中所知道的,标签不会在firefox中调用onclick函数,可能是一个错误,但与以下内容无关。

<label for="file"  class="custom-file-input"><input type="file"  name="file" class="custom-file-input"></input></label>

您要做的是为标签设置样式,以使其看起来像您想要的那样

    .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%;
    }

现在只需隐藏实际的输入按钮,但您无法将其设置为 visability: hidden

因此,通过设置使隐形 opacity: 0;

input.custom-file-input {
    opacity: 0;
    position: absolute;/*set position to be exactly over your input*/
    left: 0;
    top: 0;
}

现在,您可能已经注意到,我在标签上与输入字段具有相同的类,这是因为我希望两者都具有相同的样式,因此无论您在标签上单击什么,实际上是在单击不可见的输入字段。


0

我的解决方案...

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).");
});

这只是邪恶:D


0

$(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;" />

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.