【发布时间】:2025-12-02 01:45:01
【问题描述】:
我正在使用 Drupal commerce Kickstart 开发一个网站。
我想更改鼠标悬停时的产品卡片 UI。
我通过在 js 文件中添加脚本来执行它
但它适用于所有产品卡。
我想为单个产品卡应用事件。
这是我的代码!
Drupal.behaviors.Mouse_enter_on_product={
attach: function(context, settings){
$('.field-type-image').mouseenter(function(){
$('.field-type-commerce-product-reference').show();
});
}
}
Drupal.behaviors.Mouse_leave_from_product={
attach: function(context, settings){
$('.field-type-image').mouseleave(function(){
$('.field-type-commerce-product-reference').hide();
});
}
}
【问题讨论】:
标签: drupal drupal-7 drupal-theming drupal-commerce