gpt4 book ai didi

jquery - 下面的jQuery怎么写好一点? (衰退)

转载 作者:太空宇宙 更新时间:2023-11-03 19:59:42 24 4
gpt4 key购买 nike

我是 jQuery 的新手,我想知道如何才能更好地编写以下代码?

$( "p:first" ).css({opacity:0.5})
$( "p:first" ).mouseover(function() {
$( this ).fadeTo( "fast", 1 );
});
$( "p:first" ).mouseout(function() {
$( this ).fadeTo( "fast", 0.5 );
});

最佳答案

您可以使用 jQuery chaining还有 hover方法将 mouseenter/mouseleave 函数包装在一个简洁的方法中:

$("p:first").css({opacity:0.5})
.hover(function() {
$( this ).fadeTo( "fast", 1 );
}, function() {
$( this ).fadeTo( "fast", 0.5 );
});

如果您需要mouseovermouseout 而不是enter/leave,您可以使用。关于 过载:

$("p:first").css({opacity:0.5})
.on({
mouseover: function() {
$( this ).fadeTo( "fast", 1 );
},
mouseout: function() {
$( this ).fadeTo( "fast", 0.5 );
}
});

关于jquery - 下面的jQuery怎么写好一点? (衰退),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21752886/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com