更改输入类型=“文件”标签内容

时间:2012-12-03 14:14:25

标签: javascript jquery html css

我想知道是否有任何方法可以隐藏或更改默认标签的内容:No file chosen

<input type="file" id="myFileInput"/>

到目前为止,我想出的是将其长度缩短一半,以便显示工具提示。

$('input:file').css('width', parseFloat($($('input:file')).css('width'))/2 );

任何想法?

3 个答案:

答案 0 :(得分:7)

您无法将输入文件设计更改为每个浏览器的原生设计。但你仍然可以模拟它,抱歉hacky:

See DEMO

<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元素找到了解决方案。

  1. 命名输入[type = file]元素。
  2. 命名您的表单元素并将输入[type = file]放入其中。
  3. 制作一个跨度并将其放在表单中的输入下方。这将是您的标签。
  4. 使用CSS将输入的高度设置为0px,将不透明度设置为0,这将使其不可见。
  5. 使跨度绝对位于左侧0px。
  6. <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/