想象一下,我在电子商务网站上有很多产品卡片。然后我想从产品页面检索有关库存状态的信息。
因此,我遍历每张产品卡片,然后使用 load() 从产品页面加载信息;
这将如何影响网站的性能?
每次都会加载(); 让每个产品卡片都像一个页面视图?
那么如果我有 50 张产品卡片,页面浏览量会是 50 次吗?
$('.article-list-wrapper .articlelist-item').each(function() {
if ($(this).find('.sg-stock-availability-plp').length < 1) {
$(this)
.find('.offer')
.after("<div class='sg-stock-availability-plp'></div>");
var sg_product_href = $(this)
.find('.articlelist-item-image-wrapper')
.attr('href');
$(this)
.find('.sg-stock-availability-plp')
.load(sg_product_href + ' .article-stock-availability');
}
});
手掌心
相关分类