我需要使用Prototype做一些我可以在jQuery中轻松完成的事情

时间:2010-02-19 00:38:54

标签: javascript jquery magento prototypejs

我知道我的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()

1 个答案:

答案 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>'
});

请参阅Element.Insert in Prototype's Docs