-1
我有以下要素和需要得到在其中輸入複選框被選中如何從使用jquery的強元素中獲取文本?
<input class="inputCheckbox" tpye="checkbox"><strong>Testing</strong>
我厭倦了這一點,但沒有工作..
$(".inputCheckbox input:checked strong").text();
我有以下要素和需要得到在其中輸入複選框被選中如何從使用jquery的強元素中獲取文本?
<input class="inputCheckbox" tpye="checkbox"><strong>Testing</strong>
我厭倦了這一點,但沒有工作..
$(".inputCheckbox input:checked strong").text();
你拼錯強元素的文本值單詞類型。
<input class="inputCheckbox" type="checkbox"><strong>Testing</strong>
你可以試試,
$(".inputCheckbox input:checked").parent().find("strong").text();
的問題是,strong
元素不是input
元素內,但在它旁邊。這裏有幾個選項。最簡單的方法是給strong
元素一個類名或id。另一種選擇是使用未定義建議的兄弟姐妹。
簡單的錯字,標記爲關閉 – arserbin3