使用hover 肯定不行 换成下面代码即可
$("body").delegate(".showClild","mouseover",function(){ console.log("进入"); $(this).next().show(); }) $("body").delegate(".showClild","mouseout",function(){ console.log("移出"); $(this).next().hide(); })
$("body").delegate(".showClild","mouseover",function(){ console.log("进入"); $(this).next().show(); }) $("body").delegate(".showClild","mouseout",function(){ console.log("移出"); $(this).next().hide(); })
本文来源:JQ 使用hover无法在动态生成的div生效解决方法
本文地址:https://www.ys720.com/jiaocheng/4806.html
版权声明:本文采用[BY-NC-SA]协议进行授权,如无特别说明,转载请注明本文地址!