从特定的 magento CMS 页面中删除 jQuery

Remove jQuery from a specific magento CMS page

我想从 CMS 页面中删除 jQuery 2.1.1 实例,而不是从所有页面中删除它。我试过这样 http://prnt.sc/f2sidy 但没有任何反应,jquery 仍然在页面中。请让我知道我该怎么做。

此致

如果 jquery-2.1.1.min.js 位于 root/skin/js/ 则使用

 <reference name="head">
    <action method="removeItem"><type>skin_js</type><name>js/jquery-2.1.1.min.js</name></action>
</reference>

如果 js 文件位于 root/js/jquery/ 则使用

<reference name="head">
    <action method="removeItem"><type>js</type><name>jquery/jquery-2.1.1.min.js</name></action>
</reference>