尝试应用.hover
到基于动态 ID 显示 div 的类。例如:
HTML
<div id="parent_one">
<div class="touch" id="one">Touch me!</div>
<div id="t_one"></div>
</div>
<div id="parent_two">
<div class="touch" id="two">Touch me!</div>
<div id="t_two"></div>
</div>
jQuery
$('.touch').hover(
function(){
var id = $(this).attr('id');
var value = '#t_' + id;
$(value).fadeIn(800);
},
function(){
var id = $(this).attr('id');
var value = '#t_' + id;
$(value).delay(1500).fadeOut(800);
}
);
我有一种感觉,我的错误在于使用$(this)
但无法确定。