如何隐藏文本框中的选择文件按钮,因为我正在使用另一个按钮进行浏览。
如果我给type="File"
,按钮"choose file"
会自动出现在我的文本框中。
下面的代码:
<div class="col-lg-6">
<label>Select File</label>
<input type="file" id="SelectFile" @*style="display: none;"*@ class="form-control input-sm input-small input-inline" />
</div>
<div class="btn-group">
<button id="btnBrowse" name="btnBrowse" onclick="document.getElementById('SelectFile').click();" class="btn btn-block btn-primary btn-flat"><span class="hide-on-mobile">Browse </span><i class="fa fa-search"></i></button>
</div>
我尝试给*style="display: none;"*
,这使我的文本框不可见。