input的file 控制項及美化,inputfile美化
在一些網站進行上傳時,當單擊了“瀏覽”按鈕之後會彈出【選擇檔案】的對話方塊。想要實現這一功能,用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值就搞定了:
代碼: <input type="file" value="選擇檔案" style="width:70px;"/>
width值設定為70px剛剛好,如:
【美化】
思路:
外面的一層div是為了給裡面的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> <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>
效果:
美不美我說了不算
下班咯~
2016.6.30