suchen

Heim  >  Fragen und Antworten  >  Hauptteil

javascript - Wie entferne ich das Flag „Keine Datei ausgewählt“ für Eingabetyp=Datei?

<input type="file"> Ich möchte die Worte „Keine Datei ausgewählt“ am Ende entfernen.

高洛峰高洛峰2748 Tage vor1978

Antworte allen(5)Ich werde antworten

  • 黄舟

    黄舟2017-05-16 13:34:37

    全是答非所问的啊

    <style>
    input[type="file"] {
      color: transparent;
    }
    </style>
    <input type="file">

    Antwort
    1
  • 天蓬老师

    天蓬老师2017-05-16 13:34:37

    默认样式太丑了,我们可以把默认的 input 元素透明度设为0,然后用自定义元素覆盖住。
    http://codepen.io/zengkan0703...

    Antwort
    0
  • 滿天的星座

    滿天的星座2017-05-16 13:34:37

    <label class="button">
      <span>选择文件</span>
      <input type="file" style="display: none" onchange="处理函数">
    </label>
    .button {
      /* 自定义按钮样式 */
    }

    Antwort
    0
  • 阿神

    阿神2017-05-16 13:34:37

    <label for="inputFile" class="button">
    <span>选择文件</span>
    </label>
    <input type="file" id="inputFile" style="display: none" onchange="changed">

    自己对label自定义样式; 当点击label , 就点击了对应的 input ,

    Antwort
    0
  • 某草草

    某草草2017-05-16 13:34:37

    直接上代码,你可以参考下。

    //css
    .imgboxa{
              position: absolute;
              color:#999;
              left: 50%;
              top: 50%;
              transform: translate3d(-50%,-50%,0);
              -moz-transform: translate3d(-50%,-50%,0);
              -ms-transform: translate3d(-50%,-50%,0);
              -webkit-transform: translate3d(-50%,-50%,0);
              -o-transform: translate3d(-50%,-50%,0);
            }
    //html
    <p class="imgBox1" data-value='' style='position:relative;width:100%;text-align:center'>
            <img class="addcarimg1 img-responsive" id="blah1" src="" style="width:100%;height:20rem;overflow:hidden;"/>
            <a href="javascript:;" class="imgboxa">
             <span class="iconadd jiaNo1">+</span></br>
             <span class="txt textNo1">身份证正面</span>
             <input style='position: absolute; left: 0px; top: 0px; height: 100%; width: 100%; opacity: 0;' type='file' class="imgInp imgInp1" id="imgInp" data-value='1' />
            </a>
        </p>  

    Antwort
    0
  • StornierenAntwort