CSS普通选择器
--ID选择器
$("#xx")
--class选择器
$(".xx")
--多元素选择器
$(".xx,#xx")
--直接子类选择器(等价于children(xxx))
$("p>font")
--递归子类选择(等价于find(xxx))
$("p font")
--同级选择
$("p+h1")
--按照属性值选择
$( "input[name='first_name']" )
--具有某个属性
$("li[page]")
--并且选择
$("div.content")
网友评论