gpt4 book ai didi

javascript - 我如何向 jquery 事件添加函数

转载 作者:行者123 更新时间:2023-11-28 13:28:52 25 4
gpt4 key购买 nike

在鼠标悬停事件上,我想调用函数,当鼠标悬停在图像上时,该函数会执行某些操作,但我不知道如何为其编写代码。

function reload(){
$("img.lazy").lazyload({
effect : "fadeIn",
event:"mouseover"
});
}

例如:-

function reload(){
$("img.lazy").lazyload({
effect : "fadeIn",
event:function(moueover)
{
//do somthing here
}
});
}

最佳答案

您想使用mouseenter:

$('.test').on('mouseenter', function() {
alert( 'mouse is over here' );
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="test">Hover here</div>

关于javascript - 我如何向 jquery 事件添加函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26708838/

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