我在结帐送货地址表单中通过布局处理器添加了一个选择字段type
。在更改此字段时,我需要显示/隐藏company
字段。
有人可以建议我可以在哪里添加这部分js / jQuery代码吗?
我尝试输入\ Magento_Checkout \ templates \ onepage.phtml,但这在生产中无效。
欢迎任何建议/代码示例。
答案 0 :(得分:0)
jQuery可以完成这项工作。
<script type="text/javascript">
$('select[name=type]').on('change', function() {
$('input[name=company]').toggle();
});
</script>