我是Magento2框架的新手。我想自定义结帐页面,我可以在国家/地区字段上添加我的jQuery更改事件,所以每当我更改我的国家/地区字段选项时,其他几个字段,如城市,邮政编码,邮政编码,地址和省份更改,我可以设置最大长度动态的字符
我还在app/code/customshipping/shipping
中创建了一个自定义模块,其中包含文件view/frontend
,其中包含layout/checkout_index_index.xml
的布局文件夹,我只添加了一些代码,以便将自定义属性添加到字段中。
我关注:http://devdocs.magento.com/guides/v2.0/howdoi/checkout/checkout_customize.html
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceBlock name="checkout.root">
<arguments>
// do something here......
</arguments>
</refernceBlock>
</body>
</page>