jQuery将div移入另一个div

我需要将.link-field-first-ticket-button移动到.event-location-one中

这里是小提琴:http://jsfiddle.net/ksV73/

这是一个CMS,所以我在这件事上没有选择。

这是我正在尝试的,它没有做任何事情

$(".widget-upcoming-events-blog li").each( function() {
     var links = $(this).children(".link-field-first-ticket-button").html();
     $(this).children(".link-field-first-ticket-button").html("");
     $(this).children(".event-location-one").append(links);
});

你可以这样做:

$(".link-field-first-ticket-button").appendTo(".event-location-one");

它会将第一张票按钮移到活动位置


x = $(".widget-upcoming-events-blog").find(".link-field-first-ticket-button").remove()
$(".event-location-one").append(x);

html方法会给你元素内的内容,而不是元素本身。

只需在需要的地方添加元素。 因为一个元素不能同时存在于两个地方,它会被移动:

$(".widget-upcoming-events-blog li").each( function() {
  var links = $(this).children(".link-field-first-ticket-button");
  $(this).children(".event-location-one").append(links);
});
链接地址: http://www.djcxy.com/p/42539.html

上一篇: jQuery Move div into another div

下一篇: Move div to certain table cell according to random number