我正在研究Magento的自定义模块,我想在其中将徽标放置在config-> sales->支付方式-> module中。这是我要添加徽标的地方。

html - 在Magento中放置徽标-LMLPHP

我尝试使用CDATA,但无法正确实现它。有人可以帮我吗?给出一个代码,我必须在system.xml文件中添加一个标签。

最佳答案

<newgengiropay translate="label comment" module="newgengiropay">
    <label>
        <![CDATA[
            <div style="position:absolute;">
                <img id="newgengiropay_block" src="" alt="" border="0" />
                <span style="display:inline;position:absolute;right:0px; ">Giropay</span>
            </div>
            &nbsp;
            <script>$('newgengiropay_block').src = SKIN_URL + "images/newgengiropay/newgen.png";</script>
        ]]>
    </label>
</newgengiropay>

10-07 15:21