jQuery日本語リファレンス

jQuery does not mean Japanese Query...

Selectors/API/jQuery

:image

全てのimage要素を選択します。
サンプル
サンプル1
:imageセレクターで選択される要素が赤枠で表示されます。
<form>
  <input type="button" value="Input Button"/>
  <input type="checkbox" />
  <input type="file" />
  <input type="hidden" />
  <input type="image" />
  <input type="password" />
  <input type="radio" />
  <input type="reset" />
  <input type="submit" />
  <input type="text" />
  <select><option>Option<option/></select>
  <textarea></textarea>
  <button>Button</button>
</form>
var input = $(":image").css({background:"yellow", border:"3px red solid"});
$("div").text("For this type jQuery found " + input.length + ".")
        .css("color", "red");
$("form").submit(function () { return false; }); // so it won't submit
[全コードを表示] [実行結果を単体で表示]