想象一下,我在電子商務(wù)網(wǎng)站上有很多產(chǎn)品卡片。然后我想從產(chǎn)品頁(yè)面檢索有關(guān)庫(kù)存狀態(tài)的信息。因此,我遍歷每張產(chǎn)品卡片,然后使用 load() 從產(chǎn)品頁(yè)面加載信息;這將如何影響網(wǎng)站的性能?每次都會(huì)加載(); 讓每個(gè)產(chǎn)品卡片都像一個(gè)頁(yè)面視圖?那么如果我有 50 張產(chǎn)品卡片,頁(yè)面瀏覽量會(huì)是 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'); }});
jQuery .load() 如何影響具有許多 .load() 的站點(diǎn);
收到一只叮咚
2023-03-24 14:49:17