gpt4 book ai didi

jquery 取消悬停

转载 作者:行者123 更新时间:2023-12-03 22:12:00 25 4
gpt4 key购买 nike

我有这个脚本可以在段落内的链接悬停时在段落上显示背景颜色。我不知道该怎么做是在我“取消悬停”后使其返回到原始背景颜色。

$(function(){
$(".box a").hover(function(){
$(this).parent().css('background-color', '#fff200');
});
});

谢谢!

最佳答案

下面的函数用作 onmouseoveronmouseout

$(function () {
$(".box a").hover(function () {
$(this).parent().css('background-color', '#fff200');
}, function () {
// change to any color that was previously used.
$(this).parent().css('background-color', '#fff200');
});
});

关于jquery 取消悬停,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15275956/

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