我想知道是否有任何方法可以隐藏或更改默认标签的内容:No file chosen
<input type="file" id="myFileInput"/>
到目前为止,我想出的是将其长度缩短一半,以便显示工具提示。
$('input:file').css('width', parseFloat($($('input:file')).css('width'))/2 );
任何想法?
答案 0 :(得分:7)
您无法将输入文件设计更改为每个浏览器的原生设计。但你仍然可以模拟它,抱歉hacky:
<button id="btn_myFileInput">Choose file...</button>
<label for="btn_myFileInput">No file choosen or whatever...</label>
<input type="file" id="myFileInput" multiple />
JS:
$(function () {
$('#btn_myFileInput').data('default', $('label[for=btn_myFileInput]').text()).click(function () {
$('#myFileInput').click()
});
$('#myFileInput').on('change', function () {
var files = this.files;
if (!files.length) {
$('label[for=btn_myFileInput]').text($('#btn_myFileInput').data('default'));
return;
}
$('label[for=btn_myFileInput]').empty();
for (var i = 0, l = files.length; i < l; i++) {
$('label[for=btn_myFileInput]').append(files[i].name + '\n');
}
});
});
答案 1 :(得分:0)
你也可以这样做,但这是一个黑客:
<input type="file" id="myFileInput" name="html" style="width: 90px;" onchange="this.style.width = '100%';"/>
答案 2 :(得分:0)
Chrome也给了我这个问题。我尝试设置各种CSS选择器,但似乎没有什么效果好。但是,我确实通过使用FORM元素找到了解决方案。
<style> #file { height:0px; opacity:0; } #span { left:0px; position:absolute; cursor: pointer; } </style> <form name="form"> <input type="file" id="file" name="file"/> <span id="span">My File label!!!!</span> </form> <script> var span = document.getElementById("span"); span.onclick = function(event) { document.form.file.click(event); }; var span = document.getElementById("span"); span.onclick = function(event) { document.form.file.click(event); }; </script>
我在Chrome和FF中对此进行了测试,但并非如此,但我希望这会有所帮助。 jsfiddle http://jsfiddle.net/aressler38/L5r8L/1/