您将如何做到这一点,以使每个 .nav 中的 P 不褪色?
$(document).ready(function () {
$('.nav').mouseenter(function () {
$(this).fadeTo('fast', .5);
});
$('.nav').mouseleave(function () {
$(this).fadeTo('fast', 1);
});
});
您将如何做到这一点,以使每个 .nav 中的 P 不褪色?
$(document).ready(function () {
$('.nav').mouseenter(function () {
$(this).fadeTo('fast', .5);
});
$('.nav').mouseleave(function () {
$(this).fadeTo('fast', 1);
});
});