在某些網站上傳時,當點選了「瀏覽」按鈕之後會跳出【選取檔案】的對話方塊。想要實現這項功能,用input的file控制來實現就好啦~
<!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值就搞定了:
代碼:
width值設定為70px剛好,如下圖:
【 :
外面的一層p是為了給裡面的input提供位置參考,因為寫樣式的時候需要相對定位,使真正的file控制項覆蓋在模擬的上面,然後隱藏掉file控制項(即使file控制項不可見)
<!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> <p 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> </p> </body> </html>
效果:
以上這篇關於input的file 控制及美化就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望多多支PHP中文網。
更多關於input的file 控制項及美化相關文章請關注PHP中文網!