gpt4 book ai didi

php - 更新 magento 产品页面上的主要产品 url

转载 作者:可可西里 更新时间:2023-10-31 23:32:53 26 4
gpt4 key购买 nike

我有一个关于我目前正在构建的 magento 项目的问题。我的产品页面有一个主图像(可配置产品)和下面的缩略图。我的代码已经到了单击缩略图将图像附加到主图像区域的阶段,但是我需要它包含的链接的 href 也附加到该 imgs url。希望这是有道理的,欢迎任何帮助。

<?php
$_product = $this->getProduct();
$_helper = $this->helper('catalog/output');
?>

<div class="grid_12 grid_spacer_bottom">
<?php
$_img = '<img id="image" class="img-left img-inlineblock responsive-img" src="'.$this->helper('catalog/image')->init($_product, 'image').'" alt="'.$this->htmlEscape($this->getImageLabel()).'" />';
//echo $_helper->productAttribute($_product, $_img, 'image');
?>

<a href=""><?php echo $_helper->productAttribute($_product, $_img, 'image'); ?></a>

</div>

<div class="clear"></div>

<?php if (count($this->getGalleryImages()) > 0): ?>
<div class="more-views">
<?php foreach ($this->getGalleryImages() as $_image): ?>
<div class="grid_4 grid_spacer_bottom">
<a href="<?php echo $this->helper('catalog/image')->init($this->getProduct(), 'image', $_image->getFile()); ?>" title="<?php echo $_product->getName();?>" onclick="$('image').src = this.href; return false;">
<img class="img-left img-inlineblock responsive-img" src="<?php echo $this->helper('catalog/image')->init($this->getProduct(), 'thumbnail', $_image->getFile()); ?>" alt="<?php echo $this->htmlEscape($_image->getLabel()) ?>" />
</a>
</div>
<?php endforeach; ?>
</div>
<?php endif; ?>

最佳答案

我假设您在点击大图时尝试制作它会有缩略图的 url

给这个 href 一个 ID

 <a href="" id="img_href"><?php echo $_helper->productAttribute($_product, $_img, 'image'); ?></a>

你使用的是 jquery 还是原型(prototype)(如果默认使用 magento 那么这个)

原型(prototype)

$('img_href').setAttribute('href', this.href);
//$('img_href').href = this.href; // or

jQuery

$("#img_href").attr("href", this.href);

纯 Javascript

document.getElementById('img_href').href = this.href;

点击更新缩略图

onclick="$('image').src = this.href;  $('img_href').setAttribute('href', this.href); return false;"

关于php - 更新 magento 产品页面上的主要产品 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13070581/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com