我写了这段代码:
<action method="addLink" translate="label title" module="checkout">
<label>Cart</label>
<url helper="checkout/url/getCartUrl"/>
<title>Cart</title>
<prepare/>
<urlParams/>
<position>150</position>
</action>
但我想展示一张图片而不是label
购物车。我怎样才能在上面的 xml 代码中添加图片?
答案 0 :(得分:1)
<action method="addLink" translate="label title" module="checkout">
<label>Cart</label>
<url helper="checkout/url/getCartUrl"/>
<title>Cart</title>
<prepare/>
<urlParams/>
<position>150</position>
<liParams />
<aParams><![CDATA[ class="cart"]]></aParams>
</action>
这应该向cart
元素添加一个类<a>
。您可以在隐藏文本的类上添加css并显示图标。