ホームページ >ウェブフロントエンド >htmlチュートリアル >html input='file' は、参照時に指定されたファイル タイプ xls、xlsx、csv_html/css_WEB-ITnose のみを表示します。

html input='file' は、参照時に指定されたファイル タイプ xls、xlsx、csv_html/css_WEB-ITnose のみを表示します。

WBOY
WBOYオリジナル
2016-06-21 08:59:081279ブラウズ

有効な受け入れタイプ:

CSV ファイル (.csv) の場合:

<input type="file" accept=".csv" />

Excel ファイル 2003-2007 (.xls) の場合:

<input type="file" accept="application/vnd.ms-excel" />

Excel ファイル 2010 (.xlsx) の場合:

<input type="file" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" />

テキスト ファイル (.txt) の場合:

<input type="file" accept="text/plain" />

画像ファイル (. png/.jpg/etc)、使用:

<input type="file" accept="image/*" />

HTML ファイル (.htm、.html) の場合、使用:

<input type="file" accept="text/html" />

動画ファイル (.avi、.mpg) 、.mpeg、.mp4)、使用:

<input type="file" accept="video/*" />

オーディオ ファイル(.mp3、.wav など)の場合、使用:

<input type="file" accept="audio/*" />

PDF ファイルの場合、使用:

<input type="file" accept=".pdf" /> 

デモ:
http://jsfiddle.net/dirtyd77/LzLcZ/144/

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。