juqery 学习之三 选择器 子元素与表单

2020-05-19 07:39:13易采站长站整理

——————————————————————————–

:text
匹配所有的单行文本框

Matches all input elements of type text.
返回值

Array<Element>


示例

查找所有文本框


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 代码:


$(“:text”)

结果:


[ <input type=”text” /> ]
——————————————————————————–

:password
匹配所有密码框

Matches all input elements of type password.
返回值

Array<Element>


示例

查找所有密码框


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 代码:


$(“:password”)

结果:


[ <input type=”password” /> ]
——————————————————————————–

:radio
匹配所有单选按钮

Matches all input elements of type radio.
返回值

Array<Element>


示例

查找所有单选按钮