0
我想在另一個DIV ID中找到DIV。如何使用jQuery在父元素ID中查找元素?
<div id="container1">
<div class="inside">
</div>
</div>
<div id="container2">
<div class="inside">
</div>
</div>
請注意,有2個DIV與類「內」。我試圖選擇特定容器中的一個。
當只有1套的容器,這個工程:
$carousel_container = $(carousel).find(".inside");
然而,當我定義父ID,然後儘量選擇裏格,這是行不通的:
$carousel_container = $(carousel).find("#" + o.theid + " .inside"); // where o.theid = container1 or container2
我懷疑'o.theid'具有正確的價值。 – jAndy
它的確如此。我可以觸發一個警告框,它具有正確的值。 – JROB
@SheikhHeera:他不是 – jAndy