定義樣式並獲取上傳檔案路徑及指定檔案型別

燕兒歸發表於2015-10-08

<input type="file">定義樣式並獲取上傳檔案路徑及指定檔案型別

 (2013-11-06 11:35:03)
標籤: 

&lt;inputtypefile

 

input

 

it

分類: 工作中常用
<input type="file">定義樣式方法。
原始的<input type="file" name="file" /> 控制元件,如圖
<input <wbr>type="file">定義樣式並獲取上傳檔案路徑及指定檔案型別

例項,定義樣式並獲取上傳檔案路徑
html:
<p class="text_area2">
<input type="text" class="input_text input_text1" name="textfield" id="textfield"/> 
<a href="javascript:;" class="upload_btn2" title="上傳">
<input type="file" id="file1" class="file1" size="0.1" onchange="document.getElementByIdx_x('textfield').value=this.value" >
</a>
</p>
css:
.layer_boxs_upload .upload_box .upload_btn2 {
    background-position: -31px -126px;
    display: inline-block;
    float: left;
    height: 35px;
    margin-left: 10px;
    width: 70px;
}
//覆蓋在<input type="file">按鈕樣式
.layer_boxs_upload .upload_box .file1 {
    border: medium none;
    cursor: pointer;
    display: block;
    float: left;
    height: 35px;
    opacity: 0;
    width: 70px;
}
//<input type="file">樣式
.layer_boxs_upload .upload_box .input_text1 {
    margin-top: 5px;
    border: 1px solid #FFFFFF;
    color: #868686;
    display: inline-block;
    float: left;
    height: 21px;
    line-height: 21px;
    width: 200px;
}
//讀取上傳檔案路徑的文字框樣式
效果如圖:
<input <wbr>type="file">定義樣式並獲取上傳檔案路徑及指定檔案型別

<input type="file" />瀏覽時只顯示指定檔案型別
轉載自http://blog.csdn.net/wclxyn/article/details/7090575

<input type="file" />瀏覽時只顯示指定檔案型別

<input type="file" accept="application/msword" ><br><br>accept屬性列表<br>

1.accept="application/msexcel"
2.accept="application/msword"
3.accept="application/pdf"
4.accept="application/poscript"
5.accept="application/rtf"
6.accept="application/x-zip-compressed"
7.accept="audio/basic"
8.accept="audio/x-aiff"
9.accept="audio/x-mpeg"
10.accept="audio/x-pn/realaudio"
11.accept="audio/x-waw"
12.accept="image/gif"
13.accept="image/jpeg"
14.accept="image/tiff"
15.accept="image/x-ms-bmp"
16.accept="image/x-photo-cd"
17.accept="image/x-png"
18.accept="image/x-portablebitmap"
19.accept="image/x-portable-greymap"
20.accept="image/x-portable-pixmap"
21.accept="image/x-rgb"
22.accept="text/html"
23.accept="text/plain"
24.accept="video/quicktime"
25.accept="video/x-mpeg2"
26.accept="video/x-msvideo"

這個就可以實現選擇具體的資料型別,但是有相容問題,我在測試的時候只有Opera,Chrome能用,火狐和IE都不相容

好吧,就在這裡測試一下吧:

我只想要word

在這裡如果想支援多種型別的話,比如金山的office和microsoft的office的不同副檔名,這樣的話可以在accept裡面放置多個屬性就可以了:

<form> <input type="file" name="pic" id="pic" accept="image/gif, image/jpeg" /></form>

如果不限制影象的格式,可以寫為:accept="image/*"。同樣是可以的

好的,測試一下:

我只想要gif、bmp

好吧,只要是圖片我就要了

嗯,測試成功,用Opera,Chrome能用,因為accept也是html5的新特性,所以火狐和IE的支援就顯得單薄了,這樣還是讓我們等待他們的接受把
測試了好久,發現gif和bmp一起的時候並不是能取得他們的並集,仔細觀察以後是按寫入順序排列了一下他們的“檔案選擇型別”:

就像是下面的圖片一樣:

我們如果不定義input file的格式的時候,那麼檔案型別的地方就是全部檔案*.*,如果我們定義了自己的,那麼檔案型別就會和我們選中的一樣,但是這時候我們如果想看別的文 件的時候還是可以通過檔案型別的下拉框,去選擇自己額外喜歡的型別的,簡單的說,它就是起到了一個簡單的按照我們的主觀意願篩選的作用,同時我們如果不是 選擇的image/*而是好幾個並列的話就會按照上面的情況分別得排列出來,比如圖上的我input就是這個樣子的:

<form> <input type="file" name="pic" id="pic" accept="image/gif, image/x-ms-bmp, image/bmp" /></form>

相關文章