我知道我的jQuery,但遗憾的是对Prototype不太了解。
$(function() {
$('#home-gallery-container').append('<a href="/images/cobra_sale.jpg" alt="" rel="lightbox-home" id="special-home" ><img src="/images/tag.png" alt="Special" /></a>');
});
如果添加任何额外内容,我将如何在Prototype或Magento的库中执行此操作。
请注意,在上面的示例中,我已将考虑在内jQuery.noConflict()
等
答案 0 :(得分:3)
这应该有效:
$('home-gallery-container').insert({
bottom:'<a href="/images/cobra_sale.jpg" alt="" rel="lightbox-home" id="special-home" ><img src="/images/tag.png" alt="Special" /></a>'
});