s
当前位置主页 > jquery文档 > :image

:image | jQuery API

2014-12-14 

返回值:Array<Element(s)>:image

V1.0概述

匹配所有图像域

示例

描述:

匹配所有图像域

HTML 代码:
<form>
  <input type="text" />
  <input type="checkbox" />
  <input type="radio" />
  <input type="image" />
  <input type="file" />
  <input type="submit" />
  <input type="reset" />
  <input type="password" />
  <input type="button" />
  <select><option/></select>
  <textarea></textarea>
  <button></button>
</form>
jQuery 代码:
$(":image")
结果:
[ <input type="image" /> ]
Previous:
上一篇::submit
Next:
下一篇::reset
返回顶部