2012-04-22 60 views
1

我試圖在ID爲myEventsContainer的div下添加一些html到ul(class sportMatches)中,但我該如何定位它?這似乎並沒有工作。針對JQUERY中的子ul

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

你能說清楚嗎?你想添加一個新的列表項或什麼? – 2012-04-22 23:36:38

+3

呃,這個來自哪裏,發佈一些標記可能會有幫助? – adeneo 2012-04-22 23:38:02

回答

0

這裏是有幾條路

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

$('#myEventsContainer .sportMatches').append($('.myhtml')); 
+1

'.append()',而不是'.html()' – zerkms 2012-04-22 23:37:19

+0

剛剛用append更新了答案 – Filype 2012-04-22 23:38:01

0
$('#myEventsContainer .sportMatches').append($(this).parents('#element')); 

代替.parent()父()嘗試: .parents('yourTargetParent')

0

試一下:

$('#myEventsContainer').find('ul.sportMatches').append('<p>Some text</p>');