为什么不只使用CSS?
.parent:hover .child, .parent.hover .child { display: block; }
然后添加不支持:hover的IE6 JS(例如在条件注释中):
jQuery('.parent').hover(function () { jQuery(this).addClass('hover');}, function () { jQuery(this).removeClass('hover');});
欢迎分享,转载请注明来源:内存溢出
为什么不只使用CSS?
.parent:hover .child, .parent.hover .child { display: block; }
然后添加不支持:hover的IE6 JS(例如在条件注释中):
jQuery('.parent').hover(function () { jQuery(this).addClass('hover');}, function () { jQuery(this).removeClass('hover');});
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)