我如何在jQuery中获取元素

时间:2019-01-06 17:53:09

标签: jquery

如何将html页面中的元素放到另一个元素页面中?我使用了load(),它成功了,但是由于大量请求,我的页面瘫痪了

我想将主题中的每个第一张图片加载到主题列表中

我的代码:

$(function () {
        $(".posts-section").each(function() {
          var topicUrl = $(this).find('.topic-title').attr('href'),
              topicImg = $(this).find('.post-cover');
          $(topicImg).load(''+topicUrl+' .post-content:first img[alt=""]:first'); 
        });
});

0 个答案:

没有答案