gpt4 book ai didi

css - Magento 从特定 View 中删除 css 或 js

转载 作者:技术小花猫 更新时间:2023-10-29 10:06:33 25 4
gpt4 key购买 nike

您好,我将此添加到 catalog.xml 布局定义中:

<reference name="head">
<action method="addCss"><stylesheet>css/local.css</stylesheet></action>
</reference>

和这个在同一个文件中:

<action method="removeItem"><type>css</type><name>css/local.css</name></action>

但它不会从该 View 中删除 css。有可能它不是实现此目标的正确标记。但是不知道。任何人都可以帮忙吗?

最佳答案

以下是如何删除皮肤或 js 文件夹中所有不同的 CSS 和 JS

<reference name="head">
<!-- For a JS in the js folder -->
<action method="removeItem"><type>js</type><name>functions.js</name></action>
<!-- For a JS in the skin folder -->
<action method="removeItem"><type>skin_js</type><name>functions.js</name></action>
<!-- For CSS in the skin folder -->
<action method="removeItem"><type>skin_css</type><name>css/local.css</name></action>
<!-- For CSS in the js folder -->
<action method="removeItem"><type>js_css</type><name>local.css</name></action>
</reference>

关于css - Magento 从特定 View 中删除 css 或 js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9064604/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com