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");
或者是有其他的,更簡單的方法?
謝謝你 - 這個工作! :) – Rihards 2010-11-04 18:22:25