如何将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');
});
});