私は次のコンテンツを持っています:
<input type='checkbox' id='inputCheckbox'/><strong>sdfsf</strong><p>dfsfsdsd</p>
上記の要素から、チェックボックスが選択されている場合にのみこれらの要素を取得し、入力要素を省略する必要があります。
<strong>sdfsf</strong><p>dfsfsdsd</p>
私の試み:
$("#testPatternButton").on("click", function()
{
$("input:checked").each(function()
{
alert($(this).parent().children().not("input").html()); // only the strong text shows up
});
});