1

我试图将一些 html 附加到 id 为 myEventsContainer 的 div 下的 ul(类 sportMatches)中,但我该如何定位它呢?这似乎不起作用:

    $(this).parent().parent().appendTo($('#myEventsContainer .sportMatches'));
4

3 回答 3

0

这里有几个选择

$('#myEventsContainer .sportMatches').html('<li>some html</li>');

或者

$('#myEventsContainer .sportMatches').append($('.myhtml'));
于 2012-04-22T23:35:43.287 回答
0
  $('#myEventsContainer .sportMatches').append($(this).parents('#element'));

而不是 .parent().parent() 尝试:.parents('yourTargetParent')

于 2012-04-22T23:39:50.633 回答
0

尝试:

$('#myEventsContainer').find('ul.sportMatches').append('<p>Some text</p>');
于 2012-04-22T23:43:48.383 回答