Programming/jQuery
jQuery의 핵심...선택자(selector)
홍조
2009. 3. 3. 15:55
<basic selector>
tag - $('p')
id - $('#some-id')
class - $('.some-class')
<variable selector>
child - '>'
space
XPath selector
$('a[@title]'), $('a[title]'), $('div[ol]')
tag - $('p')
id - $('#some-id')
class - $('.some-class')
<variable selector>
child - '>'
space
XPath selector
$('a[@title]'), $('a[title]'), $('div[ol]')
728x90