美文网首页
修改input类型的文字

修改input类型的文字

作者: 岳小弟 | 来源:发表于2018-07-25 09:27 被阅读0次

    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>修改input标签type=file类型的文字</title>
    </head>
    <body>
    <div class="form-group">
    <label for="browsefile">视频地址</label>
    <input type='file' id='browsefile' style="display: none" onchange='filepath.value=this.value'>
    <input type='textfield' id=filepath>
    <input type='button' id='filebutton' value='浏览' onclick="browsefile.click()">
    </div>
    </body>
    </html>

    相关文章

      网友评论

          本文标题:修改input类型的文字

          本文链接:https://www.haomeiwen.com/subject/jmgumftx.html