Answers:
在layout.xml中无法执行此操作。这是Magento 2中可用的布局说明列表
http://devdocs.magento.com/guides/v2.0/frontend-dev-guide/layouts/xml-instructions.html
如果您想要的是浏览器兼容性,则应利用核心magento(lib / web / modernizr / modernizr.js)附带的modrnizr.js库。
在您自己的default_head_blocks.xml文件中,执行以下操作:
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<head>
<remove src="name.css"/>
</head>
</page>
您可以添加特定于浏览器的CSS,如下所示:
<page>
<head>
<css src="css/ie-9.css" ie_condition="IE 9" />
</head>
</page>
您可以删除js和CSS,如下所示:
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<head>
<!-- Remove local resources -->
<remove src="css/styles-m.css" />
<remove src="my-js.js"/>
<remove src="Magento_Catalog::js/compare.js" />
<!-- Remove external resources -->
<remove src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap-theme.min.css"/>
<remove src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"/>
<remove src="http://fonts.googleapis.com/css?family=Montserrat" />
</head>
请参考官方文档:http : //devdocs.magento.com/guides/v2.0/frontend-dev-guide/layouts/xml-manage.html#layout_markup_css
我们需要包含cms_index_index.xml文件是我们的自定义主题,通过使用此布局文件,可以删除magento 2主页中的js文件。示例在这里-
<?xml version="1.0"?>
<!--
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<head>
<remove src="varien/form.js"/>
</head>
</page>