input的file 控制項及美化,inputfile美化

來源:互聯網
上載者:User

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 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.