AnneZhao 2011-11-16
1.包含属性选择器:
jQuery("selector[attribute=value]")
2.属性包含选择器
jQuery("selector[attribute*=value]")
3.属性包含单词选择器
jQuery("selector[attribute~=value]")
4.属性不等于选择器
jQuery("selector[attribute!=value]")
5.属性等于选择器
jQuery("selector[attribute=value]")
6.属性开始选择器
jQuery("selector[attribute^=value]")
7.属性结尾选择器
jQuery("selector[attribute$=value]")
8.复合属性选择器
jQuery("selector[selector2][selector3]...[selectorN]")
e.g:$("input[id][name$='man']").value("ok");