:file
:fileはtype属性がfileのinput要素を検索できるセレクタです。
$(":file")
:から始まるセレクタは、その前にタグやセレクタを指定することを推奨しています。さもなければユニバーサルセレクタが利用されます。$(‘:file’)では $(‘*:file’)となるため $(‘input:file’)と記述したほうが良いでしょう。
このセレクタは属性セレクタを利用した次のコードと同じ動きをします。
$('input[type=file]')
そのため、モダンブラウザでquerySelectorAll() による恩恵を受けられる後者の記述を推奨し、この記述は非推奨です。
参考URL
登録日 : 2012年11月01日 最終更新日 : 2012年11月1日
同じカテゴリー(Selectors)のエントリー
- :disabled
- [attribute~=’value’]
- [attribute|=’value’]
- :animated
- :focus
- :target
- :lang()
- :root
- :only-of-type
- :last-of-type
- :first-of-type
- :nth-last-of-type()
- :nth-of-type()
- :nth-last-child()
- :selected
- :checked
- :file
- :button
- :reset
- :image
- :submit
- :checkbox
- :radio
- :password
- :text
- :input
- :parent
- :has()
- :contains()
- :header
- :lt()
- :gt()
- :eq()
- :odd
- :even
- :last
- :first
- [attributeFilter1][attributeFilter2]
- [attribute*=’value’]
- [attribute$=’value’]
- [attribute^=’value’]
- [attribute!=’value’]
- [attribute=’value’]
- [attribute]
- :not()
- :empty
- :only-child
- :last-child
- :first-child
- 兄弟セレクタ
- 隣接セレクタ
- 子セレクタ
- 子孫セレクタ
- グループセレクタ
- classセレクタ
- idセレクタ
- 要素セレクタ
- ユニバーサルセレクタ