如何在 Magento 产品视图页面中单击或悬停时回显属性名称

发布于 2024-11-03 03:44:45 字数 123 浏览 4 评论 0原文

我安装了一个模块,它为我提供了颜色样本作为缩略图而不是下拉列表。用户单击颜色后,如何回显属性(颜色)名称?

例如,如果他们单击黑色缩略图,我希望下面显示短语“颜色:黑色”。有人可以帮忙吗?

非常感谢。

I installed a module that gave me color swatches as a thumbnail instead of dropdown. How can I echo the attribute (color) name once a user has clicked on the color?

For example, if they click the Black thumbnail, I would like the phrase "Color:Black" to display below. Can anyone help?

Thank you very much.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

友谊不毕业 2024-11-10 03:44:45

如果您的色样处于“选定”状态,您可能可以轻松地将其用于样式设置。例如:

<a class='color' href='#'><img src='path/to/red.png' /><span class='label'>Red</span></a>
<a class='color' href='#'><img src='path/to/green.png' /><span class='label'>Green</span></a>
<a class='color selected' href='#'><img src='path/to/blue.png' /><span class='label'>Blue</span></a>

以及随附的 CSS:

.color .label { display:none; }
.color.selected .label { display:block; }

If your color swatches have a "selected" state, you may trivially be able to use that for styling. For instance:

<a class='color' href='#'><img src='path/to/red.png' /><span class='label'>Red</span></a>
<a class='color' href='#'><img src='path/to/green.png' /><span class='label'>Green</span></a>
<a class='color selected' href='#'><img src='path/to/blue.png' /><span class='label'>Blue</span></a>

And accompanying CSS:

.color .label { display:none; }
.color.selected .label { display:block; }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文