我有它創建了一個表格下面的代碼(JSBin):文本欄中替換「選擇文件」
<form class="form" method="post" action="upload.php">
<div class="form-group email">
<!-- <label class="sr-only" for="email">Email</label> -->
<input name="f_email" id="email" type="email" class="form-control" placeholder="Email:">
</div>
<div class="form-group file">
<!-- <label class="sr-only" for="file">File</label> -->
<input name="file" id="file" type="file" class="form-control" placeholder="Click to choose file:">
</div>
<button type="submit">Upload</button>
</form>
現在我想的Email
風格適用於Choose file
:我不想請參閱Choose file
按鈕,我希望看到一個文本欄充滿了Click to choose file:
(如文本欄中填有Email:
)。
我試圖
<input name="file" id="file" type="file" class="form-control" style="visibility: hidden; display: none;" placeholder="Click to choose file:">
或
<input name="file" id="file" type="file" class="form-control" style="position: relative; top: -1000px;" placeholder="Click to choose file:">
但他們都去掉了file
線。
我將添加一個onclick事件(用於啓動文件瀏覽器)和一個更改事件(用於在欄中顯示所選文件名),但在此之前,是否有人知道如何顯示上述條形圖?
此外,有沒有人知道如何顯示在同一行中的電子郵件欄和文件欄?
更新1:很高興知道Bootstrap FileStyle。但似乎在該字段中禁用了onclick事件。這裏是一個例子:JSBin。
是從[這個問題](http://stackoverflow.com/questions/1944267/how-to-change-the-button-text-of此不同 - 輸入型文件)? – fakedad
這是一種替代方案,但我仍然不想看到該按鈕,並且onclick事件似乎被禁用。請看我的更新... – SoftTimur