runoops.com

jQuery 选择器 第2页

jQuery :checkbox 选择器

阅读(372)

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

jQuery :radio 选择器

阅读(429)

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

jQuery :password 选择器

阅读(554)

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

jQuery :text 选择器

阅读(381)

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

jQuery :input 选择器

阅读(346)

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

jQuery [name=”value”][name2=”value2″] 选择器

阅读(308)

实例 Run this code » 通过复合选择器查找符合条件的输入框,并设置值。 定义和用法 [name="value"][name2="value2"] 是复合属性选择器,需要同时满足多个条件时使用。 语法 $( "[attribut...

jQuery [attribute*=value] 选择器

阅读(278)

实例 Run this code » 选取所有带有包含字符串 "nation" 的 name 属性的 <input> 元素: $("input[name*='nation']") 定义和用法 [attribute*=value]...

jQuery [attribute~=value] 选择器

阅读(349)

实例 Run this code » 选取所有带有包含单词 "nation" 的 name 属性的 <input> 元素: $("input[name~='nation']") 定义和用法 [attribute~=value] ...

jQuery [attribute^=value] 选择器

阅读(273)

实例 Run this code » 选取所有带有以 "nation" 开头的 name 属性的 <input> 元素: $("input[name^='nation']") 定义和用法 [attribute^=value] 选...

jQuery [attribute|=value] 选择器

阅读(325)

实例 Run this code » 选取所有带有以 "Tomorrow" 开头的 title 属性的 <p> 元素: $("p[title|='Tomorrow']") 定义和用法 [attribute|=value] 选择器...