我试图将一些 html 附加到 id 为 myEventsContainer 的 div 下的 ul(类 sportMatches)中,但我该如何定位它呢?这似乎不起作用:
$(this).parent().parent().appendTo($('#myEventsContainer .sportMatches'));
我试图将一些 html 附加到 id 为 myEventsContainer 的 div 下的 ul(类 sportMatches)中,但我该如何定位它呢?这似乎不起作用:
$(this).parent().parent().appendTo($('#myEventsContainer .sportMatches'));
这里有几个选择
$('#myEventsContainer .sportMatches').html('<li>some html</li>');
或者
$('#myEventsContainer .sportMatches').append($('.myhtml'));
$('#myEventsContainer .sportMatches').append($(this).parents('#element'));
而不是 .parent().parent() 尝试:.parents('yourTargetParent')
尝试:
$('#myEventsContainer').find('ul.sportMatches').append('<p>Some text</p>');