当悬停由属性定位的 .thumb 兄弟元素 .description 时,如何停止触发 mouseleave 触发器:绝对位置。
我有以下js代码
$('.thumb').on({
mouseenter: function() {
$(this).siblings('.description').delay(100).slideDown(200);
start_preview($(this));
},
mouseleave: function(e) {
$(this).siblings('.description').stop(true, true).slideUp(200);
clearInterval( $(this).data('timer') ); //Stops preview
}
});
对于以下 HTML 代码:
<td><a href="/video?id=1052">
<img class="thumb" src="path" />
<div class="description"></div>
</a></td>