我試圖在ID爲myEventsContainer的div下添加一些html到ul(class sportMatches)中,但我該如何定位它?這似乎並沒有工作。針對JQUERY中的子ul
$(this).parent().parent().appendTo($('#myEventsContainer .sportMatches'));
我試圖在ID爲myEventsContainer的div下添加一些html到ul(class sportMatches)中,但我該如何定位它?這似乎並沒有工作。針對JQUERY中的子ul
$(this).parent().parent().appendTo($('#myEventsContainer .sportMatches'));
$('#myEventsContainer .sportMatches').append($(this).parents('#element'));
代替.parent()父()嘗試: .parents('yourTargetParent')
試一下:
$('#myEventsContainer').find('ul.sportMatches').append('<p>Some text</p>');
你能說清楚嗎?你想添加一個新的列表項或什麼? – 2012-04-22 23:36:38
呃,這個來自哪裏,發佈一些標記可能會有幫助? – adeneo 2012-04-22 23:38:02