我正在尝试使用 jquery 加载可配置产品的选项以使模板更快。这个想法是显示默认选项并让客户选择他们想要更改的项目。但是,我找不到任何关于 magento 模块如何将某些内容返回给 jQuery 函数的方向。有任何想法吗?
<?php foreach($_attributes as $_attribute): ?>
<dt><label class="required"><em>*</em><?php echo $_attribute->getLabel() ?></label></dt>
<dd<?php if ($_attribute->decoratedIsLast){?> class="last"<?php }?>>
<div class="input-box">
<select name="super_attribute[<?php echo $_attribute->getAttributeId() ?>]" id="attribute<?php echo $_attribute->getAttributeId() ?>" class="required-entry super-attribute-select">
<option><?php echo $this->__('Choose an Option...') ?></option>
</select>
</div>
</dd>
<?php endforeach; ?>