0

如何仅删除搜索目录页面的 js?

我尝试在catalogsearch.xml 中使用此代码,参考名称为“head”...

<action method="removeItem">
    <type>skin_js</type>
    <name>slideshowwidget/js/jquery-1.4.2.min.js</name>
</action>

但它不起作用。

4

1 回答 1

0

如果您的 js 文件位于 Magento 根 js 目录中,您应该使用“js”作为类型而不是“skin_js”:

<action method="removeItem">
    <type>js</type>
    <name>slideshowwidget/js/jquery-1.4.2.min.js</name>
</action>
于 2012-12-24T07:43:52.253 回答