我有一个 jquery 脚本,我需要在悬停状态下显示一个带有类的图像。
$(document).ready(function() {
$('.tooltip').hover(
function() {$('.vidOvr').stop().fadeIn(750);} ,
function() {$('.vidOvr').stop().fadeOut(500);})
});
我意识到我需要一个“这个”在某个地方,这样脚本就不会触发图像显示在页面上的所有 vidOver 图像上。我尝试添加查找:
$(document).ready(function() {
$('.tooltip').hover(
function() {$(this).find('.vidOvr').stop().fadeIn(750);} ,
function() {$(this).find('.vidOvr').stop().fadeOut(500);})
});
没有任何运气。也试过:
$(document).ready(function() {
$(this).find('.tooltip').hover(
function() {$('.vidOvr').stop().fadeIn(750);} ,
function() {$('.vidOvr').stop().fadeOut(500);})
});
我在这里想念什么?