在我的magento details
页面中有一个tabcontent
当我点击 review
(参见图)时,我想在审核下的标签上显示我的评论特定产品
请帮我解决问题
答案 0 :(得分:1)
好的,忘了我说的一切。 让我们假设你有:
<div id="review"></div>
在此评论中,您将对产品进行审核。 首先,您需要一个带有一个动作的控制器来带您的产品。我假设你知道这样做。所以,让我们去ajax。
$('#review').live('click',function(){
$.ajax({
url: '<?= Mage::getBaseUrl() ?>/catalog/product/review', //lets assume you'r using ProductController the reviewAction().
success: function(data) {
$('#review').html(data);
}
});
});
答案 1 :(得分:1)
添加
<reference name="content">
<block type="review/product_view_list" name="product.info.product_additional_data" as="product_review" template="review/product/view/list.phtml">
<block type="review/form" name="product.review.form" as="review_form"/>
</block>
</reference>
在catalog.xml文件下
使用<?php echo $this->getChildHtml('product_review') ?>
在tabcontent中打印您的评论
答案 2 :(得分:0)
试试这个免费扩展程序: Magento EasyTabs
它涵盖了您的所有需求(描述,详细信息,评论......)。