我自定义了我的输入类型=“文件”,就像Facebook上传而不是文本框和一个按钮(默认输入类型=“文件”)我只在没有文本框的情况下将输入文件设为按钮,您可以在其中查看路径文件。我打算在我的自定义输入文件旁边添加span或p标签,以显示文件的路径。
当我选择文件时,如何将文件路径打印到span标记?
html代码
<!doctype>
<html>
<head>
</head>
<body>
<div class="browse-wrap">
<div class="title">Choose a file to upload</div>
<input type="file" name="upload" class="upload" title="Choose a file to upload">
</div>
<span class="upload-path"></span>
</body>
</html>
css代码
div.browse-wrap {
top:0;
left:0;
margin:20px;
cursor:pointer;
overflow:hidden;
padding:20px 60px;
text-align:center;
position:relative;
background-color:#f6f7f8;
border:solid 1px #d2d2d7;}
div.title {
color:#3b5998;
font-size:14px;
font-weight:bold;
font-family:tahoma, arial, sans-serif;}
input.upload {
right:0;
margin:0;
bottom:0;
padding:0;
opacity:0;
height:300px;
outline:none;
cursor:inherit;
position:absolute;
font-size:1000px !important;}
span.upload-path {
margin:20px;
display:block;}
谢谢!
答案 0 :(得分:6)
$('input[type="file"]').change(function(){
$(this).closest('.browse-wrap').next('.upload-path').text(this.value);
});
Demo: get rid of C:\fakepath\
in Chrome
或使用HTML5 file API
$('input[type="file"]').change(function(){
var f = this.files[0];
var name = f.name;
$(this).closest('.browse-wrap').next('.upload-path').text(name);
});
答案 1 :(得分:1)
目前无法在更新的浏览器中获取用户计算机中的完整路径名。 Quoting this answer:
[...]在MSIE和其他古老的网络浏览器中发送完整的文件路径是由于安全漏洞。 W3和RFC2388规范从未提及包含完整文件路径。只有文件名。 Firefox正在正常工作。
暂时考虑隐私:您希望网站收集(部分)您的文件系统结构作为您上传的每个文件的副作用吗?
文件名通常足以向用户表明他/她选择了哪些文件,因此它应该足以满足您的使用案例。
在当前稳定的Chrome版本中访问文件输入的value
属性会产生C:\fakepath\realfilename.ext
,而Firefox会提供realfilename.ext
。您可以通过这种方式将其标准化为仅文件名:
$('input[type="file"]').change(function(){
var filename = this.value.match(/[^\\\/]+$/, '')[0];
alert(filename);
});
答案 2 :(得分:1)
我认为OP指的是通常在默认文件按钮旁边找到的文件名。根据@ fabricio-matte的说明,由于安全限制,无法从浏览器访问文件路径。尽管如此,回到我的第一个假设,我认为解决方案只是简单地组合一点JavaScript来检测输入中的变化,并使用默认浏览器按钮使用的默认文本设置相应的span
,所以让我们放一下所有作品:
OP HTML
<div class="browse-wrap">
<div class="title">Choose a file to upload</div>
<input type="file" name="upload" class="upload" title="Choose a file to upload">
</div>
<span class="upload-path"></span>
OP CSS有一些改进
div.browse-wrap {
top:0;
left:0;
margin:20px;
cursor:pointer;
overflow:hidden;
padding:20px 60px;
text-align:center;
position:relative;
background-color:#f6f7f8;
border:solid 1px #d2d2d7;}
div.title {
color:#3b5998;
font-size:14px;
font-weight:bold;
font-family:tahoma, arial, sans-serif;}
input.upload {
right:0;
margin:0;
bottom:0;
padding:0;
opacity:0;
height:300px;
outline:none;
cursor:inherit;
position:absolute;
font-size:1000px !important;}
span.upload-path {
text-align: center;
margin:20px;
display:block;
font-size: 80%;
color:#3b5998;
font-weight:bold;
font-family:tahoma, arial, sans-serif;
}
用于检测输入更改的JavaScript
// Span
var span = document.getElementsByClassName('upload-path');
// Button
var uploader = document.getElementsByName('upload');
// On change
for( item in uploader ) {
// Detect changes
uploader[item].onchange = function() {
// Echo filename in span
span[0].innerHTML = this.files[0].name;
}
}
CodePen演示:http://codepen.io/anon/pen/isJqx
这样,您确保每次用户更改文件时都会更新跨度,不会破坏任何安全限制,也不需要路径,因为无论如何首先都没有显示路径。
答案 3 :(得分:0)
.custom{
position: relative;
z-index: 1;
border: 1px solid #ccc;
cursor:pointer;
width: 30%;
height: 30px;
}
.custom::after{
content: "Upload";
position: absolute;
right: 0px;
background-color: rgba(51, 122, 183, 1);
height: 65%;
padding: 5px 10px;
color: #fff;
display: block;
font-size: 18px;
width: 50px;
text-align: center;
top: 0;
}
.custom .file-text{
display: block;
position: absolute;
padding: 2px 20px;
color: #f00;
font-weight: bold;
font-size: 20px;
}
.custom .file{
display: inline;
width: 100%;
height: 100%;
z-index: 9999;
opacity: 0;
cursor: pointer;
padding: 0;
position: relative;
}
You must call a library jquery before code $(function () { $('.custom input[type="file"]').on("change", function() { $('.custom .file-text').text($(this).val()); }); });
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div class="custom">
<span class="file-text">chosse file</span>
<input type="file" class="file"></input>
</div>
</body>
</html>