2010-11-04 57 views
0

所以這裏是我的代碼。來自jQuery的jQuery兒童選擇對象?

var template = $("#instance > .template"); 
$("#instance-" + country + " > .content > .stats > .map > .template").before(function() { 
    var temp = template.clone(); 

    //how to select descendant? 
    temp.children(".amount-all").html(json.services[service].total); 

    return temp; 
}); 

我需要做的是這樣的:

temp.children(".amount-all").children("blala").children("blalalala").html("blala"); 

或者是有其他的,更簡單的方法?

回答

2

您可以使用.find()獲得任何級別選擇匹配(而不是像.children()看着眼前立即孩子一樣)是decendants,像這樣:

temp.find(".amount-all").html(json.services[service].total); 
+0

謝謝你 - 這個工作! :) – Rihards 2010-11-04 18:22:25