在一些網站進行上傳時,當單擊了“浏覽”按鈕之後會彈出【選擇文件】的對話框。想要實現這一功能,用input的file控件來實現就好啦~
XML/HTML Code復制內容到剪貼板
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Document</title>
- <style></style>
- </head>
- <body>
- <input type="file" value="選擇文件" />
- </body>
- </html>
效果圖是醬嬸的:
注意!別以為這個是由一個text和一個button組合成的,其實它就是一個file控件哦
今天工作中遇到要求:不顯示“未選擇任何文件”,搗鼓夠一個小時,發現設置它的width值就搞定了:
代碼: <input type="file" value="選擇文件" />
width值設置為70px剛剛好,如下圖:
【美化】
思路:
外面的一層div是為了給裡面的input提供位置參考,因為寫樣式的時候需要相對定位,使真正的file控件覆蓋在模擬的上面,然後隱藏掉file控件(即使file控件不可見)
XML/HTML Code復制內容到剪貼板
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Document</title>
- <style>
- .file-box{ position:relative;width:340px}
- .txt{ height:22px; border:1px solid #cdcdcd; width:180px;}
- .btn{ background-color:#FFF; border:1px solid #CDCDCD;height:24px; width:70px;}
- .file{ position:absolute; top:0; right:80px; height:24px; opacity:0;width:260px; }
- </style>
- </head>
- <body>
- <br><br>
- <div class="file-box">
- <form action="" method="post" enctype="multipart/form-data">
- <input type='text' name='textfield' id='textfield' class='txt' />
- <input type='button' class='btn' value='浏覽' />
- <input type="file" name="fileField" class="file" id="fileField" size="28"/>
- </form>
- </div>
- </body>
- </html>
效果:
以上這篇關於input的file 控件及美化就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持腳本之家。