Javascript 在 DIVI 中:mouseenter 不起作用

Javascript in DIVI : mouseenter does not work

我正在使用 WordPress 上的 Divi 为客户创建网站。

我需要添加一些 js 代码来创建 mouseenter 效果,以便将徽标更改为二维码。

有代码:

    window.onload = function(){
        let wechatLogo = document.querySelector('#wechat img');
        wechatLogo.addEventListener('mouseenter', e => {
            wechatLogo.src = "/wp-content/uploads/2020/10/微信图片_20201017141208-1.jpg";
    });
    }

前面什么都不做,也没有任何错误。

我可能需要你的帮助。

非常感谢。

试试 wechatLogo.srcset

window.onload = function(){
        let wechatLogo = document.querySelector('#wechat img');
        wechatLogo.addEventListener('mouseenter', e => {
            wechatLogo.srcset = "https://www.ateliersfrancochinois.com/wp-content/uploads/2020/10/微信图片_20201017141208-1.jpg";
    });
   }