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