在JQUERY中定位子ul

时间:2012-04-22 23:34:18

标签: jquery jquery-selectors

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

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

3 个答案:

答案 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>');