46d5fe1c7617e3914f214aaf043f4ccf /*高亮显示*/ .highlight{ background-color: gray } 531ac245ce3e4fe3d50054a55f265927
6c04bd5ca3fcae76e30b72ad730ca86d dc6dce4a544fdca2df29d5ac0ea9906b e388a4556c0f65e1904146cc1a846beeHello94b3e26ee717c64999d7867364b1b4a3 16b28748ea4df4d9c2150843fecfba68 c90ef46644c27e75cab5f1ef5a0f28c8ID为test的DIV16b28748ea4df4d9c2150843fecfba68 4fb65521dabebd29be5be8a3a084f743足球 e70f87b21cc1adba400eaae9c44a896a排球 33fd076a5ca6b7d059888efe861853b1篮球 ebfe6342499c93420dd9dd5327d0d971其他 36cc49f0c466276486e50c850b7e4956
[attribute]用法
定义:匹配包含给定属性的元素
$("div[id]").addClass("highlight"); //查找所有含有ID属性的div元素
2. [attribute=value]用法
定义:匹配给定的属性是某个特定值的元素
$("input[name='basketball']").attr("checked",true); //name属性值为basketball的input元素选中
3. [attribute!=value]用法
定义:匹配给定的属性是不包含某个特定值的元素
$("input[name!='basketball']").attr("checked",true); //name属性值不为basketball的input元素选中 //此选择器等价于:not([attr=value])要匹配含有特定属性但不等于特定值的元素,请使用[attr]:not([attr=value]) $("input:not(input[name='basketball'])").attr("checked",true);
4. [attribute^=value]用法
定义:匹配给定的属性是以某些值开始的元素
$("input[name^='foot']").attr("checked",true); //查找所有 name 以 'foot' 开始的 input 元素
5. [attribute$=value]用法
定义:匹配给定的属性是以某些值结尾的元素
$("input[name$='ball']").attr("checked",true); //查找所有 name 以 'ball' 结尾的 input 元素
6. [attribute*=value]用法
定义:匹配给定的属性是以包含某些值的元素
$("input[name*='sket']").attr("checked",true); //查找所有 name 包含 'sket' 的 input 元素
7. [selector1][selector2][selectorN]用法
定义:复合属性选择器,需要同时满足多个条件时使用
$("input[id][name$='ball']").attr("checked",true); //找到所有含有 id属性,并且它的 name属性是以 ball结尾的
更多jquery选择器之属性过滤选择器详解相关文章请关注PHP中文网!