$('#one #two #three')
但請記住,在一個頁面ID
應該是唯一
所以$('#three').css()
應足以
這是有道理的,當元素是class
元素或tagNames
$('.one .two .three') <--
$('div span p') <-- These are fine
所有這些應該工作
// Using find to target the class
$(this).find('.two').find('.three').css('border', '1px dashed red');
// Using find to target the class
$(this).find('.two .three').css('border', '1px dashed red');
// Using the this context
$('.two .three',this).css('border', '1px dashed red');
// Using the this context and immediate children
$('> .two > .three',this).css('border', '1px dashed red');
>
只會得到直接的孩子。另2使用this
作爲上下文
Check Fiddle
確實像這樣http://jsfiddle.net/j9Tyf/? – Shebo