将Masonry类添加到Jquery html字符串

时间:2012-06-24 21:21:17

标签: jquery wordpress jquery-masonry

我正在尝试使用jquery查找和替换html数据。 jquery脚本正在工作,因为它从一个div容器获取html数据并用新数据替换它。问题在于重新加载它是复制容器类而不是添加计算以下div所需的masonry-brick类。

这是JQuery:

$("div.more a").on("click", function (event) {
   event.preventDefault();
   // get the contents
    $.get(this.href, function (response) {
        // jquerify the response HTML string and find our replaceable area
        var result = $(response).find('.l-home-grid');
        // do the replace
        $('.l-home-grid').html(result);
    });
  // Revert all to original state
  $("a.active")
    .removeClass("active")
    .addClass("static");
  // Set classes to clicked anchor
  $(this)
    .removeClass("static")
    .addClass("active");

  window.location.hash = $(this).text();
});

这导致了html:

<div class="mobile-padding l-home-grid masonry" style="position: relative; height: 2660px; ">
  <div class="mobile-padding l-home-grid">
    <div class="gridCells"><a href="#">
      <h4>Things</h4>
      <img width="256" height="182" src="foo.jpg"> </a></div>
    <div class="gridCells"><a href="#">
      <h4>More Things</h4>
      <img width="256" height="182" src="foo.jpg"> </a></div>
    <div class="gridCells"><a href="#">
      <h4>Objects</h4>
      <img width="256" height="182" src="foo.jpg" > </a></div>
  </div>
</div>

为什么是

<div class="mobile-padding l-home-grid masonry" style="position: relative; height: 2660px; ">
      <div class="mobile-padding l-home-grid"> 

加载两次?

目标是:

<div class="mobile-padding l-home-grid masonry" style="position: relative; height: 2660px; ">
    <div class="gridCells masonry-brick"><a href="#">
      <h4>Things</h4>
      <img width="256" height="182" src="foo.jpg"> </a></div>
   ...

1 个答案:

答案 0 :(得分:1)

这种情况正在发生,因为您将响应中的整个.l-home-grid元素添加到现有的.l-home-grid元素中。改变这一行:

var result = $(response).find('.l-home-grid');

到此:

var result = $(response).find('.l-home-grid').html();

只是将响应内容添加到容器中。您可能需要致电

$('.l-home-grid').masonry('reload');

在您提取新内容以确保其获得Masonry-ified后。