我正在使用 jquery 在悬停时淡化 div,但是一旦显示锚链接就无法选择。
$('#show').hover(function() {
$(this).stop(true).fadeTo("slow", 0);
}, function() {
$(this).stop(true).fadeTo("slow", 1);
});
看起来褪色的 div 实际上仍然位于隐藏的 div 之上。
示例:http: //jsfiddle.net/BJwn7/81/
如何使链接可选择?