gpt4 book ai didi

jquery - mouseleave() 回到 mouseenter() 之前

转载 作者:太空宇宙 更新时间:2023-11-03 20:10:08 27 4
gpt4 key购买 nike

是否可以将元素 $("p") 返回到应用 mouseenter() 方法之前的确切颜色?或者我是否需要知道 mouseenter() 之前的颜色,然后使用 mouseleave() 应用该颜色?我希望它恢复到应用 mouseleave() 之前的颜色...除了知道 mouseenter() 之前的颜色之外还有其他方法吗?

Jquery代码(我不想把它设置成蓝色,我想把它设置成mouseenter()之前的颜色):

$(document).ready(function () {
$("p").mouseenter(function () {
$(this).css("color","yellow")
})
.mouseleave(function () {
$(this).css("color","blue")
})
})

最佳答案

只需将颜色设置为空字符串,它将使用您最初设置的值:

.mouseleave(function() {
$(this).css("color", "")
})

jsFiddle example

关于jquery - mouseleave() 回到 mouseenter() 之前,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36627482/

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