2013-09-26 74 views

回答

3

查找特別有用:

var $elements = $("div"); 
// some code that does other stuff with $elements 
// ... 
// then 
var $products = $elements.find(".product"); 

或者即使你有一個直接引用是父/祖先DOM元素:

$(domElementRef).find(".product"); 
// or inside an event handler where 'this' is the DOM element the event applied to: 
$(this).find(".product"); 

如果您不需要對父代/祖代元素進行任何類型的處理,則只需使用組合選擇器$("div .product")即可。

相關問題