我正在尝试在前端自定义与 magento 相关的产品下拉菜单。到目前为止它运行良好,但是当用户单击单选按钮时,我需要以某种方式更新价格。我想我需要使用一些 jquery 的东西?价格存储在无线电值中。有什么建议么?:)
我目前正在使用的代码是:
<?php
if($_product->getTypeId() == "configurable"):
$conf = Mage::getModel('catalog/product_type_configurable')->setProduct($_product);
$simple_collection = $conf->getUsedProductCollection()->addAttributeToSelect('*')->addFilterByRequiredOptions();
foreach($simple_collection as $simple_product){ ?>
<input type="radio" id="attribute135" name="attribute135" value="<?php echo strip_tags(Mage::helper('core')->currency($simple_product->getPrice())) ?>" /> <?php echo $simple_product->getName();
}
endif;
?>