runoops.com

标签:jQuery

第28页
jQuery 选择器

jQuery :reset 选择器

阅读(473)

实例 Run this code » 选取带有 type="reset" 的 <input> 和 <button> 元素: $(":reset") 定义和用法 :reset 选择器选取带有 type=reset 的 ...

jQuery 选择器

jQuery :submit 选择器

阅读(453)

实例 Run this code » 选取带有 type="submit" 的 <input> 和 <button> 元素: $(":submit") 定义和用法 :submit 选择器选取带有 type=submi...

jQuery 选择器

jQuery :checkbox 选择器

阅读(394)

实例 Run this code » 选取所有带有 type="checkbox" 的 <input> 元素: $(":checkbox") 定义和用法 :checkbox 选择器选取带有 type=checkbox 的 inp...

jQuery 选择器

jQuery :radio 选择器

阅读(455)

实例 Run this code » 选取所有带有 type="radio" 的 <input> 元素: $(":radio") 定义和用法 :radio 选择器选取带有 type=radio 的 input 元素。 语法 $(...

jQuery 选择器

jQuery :password 选择器

阅读(631)

实例 Run this code » 选取带有 type="password" 的 <input> 元素: $(":password") 定义和用法 :password 选择器选取带有 type=password 的 input...

jQuery 选择器

jQuery :text 选择器

阅读(406)

实例 Run this code » 选取带有 type="text" 的 <input> 元素: $(":text") 定义和用法 :text 选择器选取带有 type=text 的 input 元素。 语法 $(":text...

jQuery 选择器

jQuery :input 选择器

阅读(375)

实例 Run this code » 选取所有 input 元素: $(":input") 定义和用法 :input 选择器选取表单元素。 该选择器同样适用于 button 元素。 语法 $(":input")