首頁  >  選擇器  > :radio

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

V1.0Query :radio 選擇器概述

匹配所有單選按鈕

示例

描述:

查找所有單選按鈕

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 代碼:
$(":radio")
結(jié)果:
[ <input type="radio" /> ]