jQuery <その他リファレンス メモ> 言語 等 CSSHTML JavaScriptPython ライブラリ・プラットフォーム jQuerymicro:bit Xamarin ドキュメンテーション DoxygenJSDoc MarkdownSHFB XML ドキュメント コメント その他 各種資料 子サイト 簡易リファレンス・Tips サポート寄付 セレクタ (Selectors) :image【イメージボタン要素】セレクタ :image【イメージボタン要素】セレクタメモイメージボタン要素を選択 $( "[type='image']" ) と同等 パフォーマンス ネイティブ DOM querySelectorAll() 未使用の為、低速$( "[type='image']" ) の方が高速 ( 例 参照) 要素対象 type属性が"image" (イメージボタン)の HTML5:<input>【汎用入力コントロール】 構文 jQuery( ":image" ) 1.0関連jQuery リファレンス メモ :button【ボタン要素】 :reset【リセットボタン要素】 :submit【送信ボタン要素】 :input【各種入力要素】 HTML5 リファレンス メモ <input>【汎用入力コントロール】 jQuery (英語) :image Selector 例 <p id="id1"> <button type="button"><button type="button"></button> <input type="button" value='<input type="button">'> <input type="image" value='input type="image"'> </p> <p id="id2"> <button type="button"><button type="button"></button> <input type="button" value='<input type="button">'> <input type="image" value='input type="image"'> </p> <script> $( "#id1 input:image" ).css( "border", "2px red dashed" ); $( "#id2 input[type='image']" ).css( "border", "2px blue dashed" ); </script> <button type="button"> <button type="button">