在一些網(wǎng)站進(jìn)行上傳時(shí),當(dāng)單擊了“瀏覽”按鈕之后會(huì)彈出【選擇文件】的對(duì)話框。想要實(shí)現(xiàn)這一功能,用input的file控件來實(shí)現(xiàn)就好啦~
XML/HTML Code復(fù)制內(nèi)容到剪貼板
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Document</title>
- <style></style>
- </head>
- <body>
- <input type="file" value="選擇文件" />
- </body>
- </html>
外面的一層div是為了給里面的input提供位置參考,因?yàn)閷憳邮降臅r(shí)候需要相對(duì)定位,使真正的file控件覆蓋在模擬的上面,然后隱藏掉file控件(即使file控件不可見)
XML/HTML Code復(fù)制內(nèi)容到剪貼板
- <!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>