gpt4 book ai didi

javascript - jQuery 函数中的事件

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:09:41 26 4
gpt4 key购买 nike

我知道如何以经典方式使用 jQuery 事件,例如:

$("#moveArea").mousemove(function(event){
$("#info").empty().append("pageX is: "+event.pageX);
});

演示:http://jsfiddle.net/Ey7kP/

我的问题是如何在我已经创建的函数中传递事件。我需要类似下面的东西,但我不知道如何实现这一点

function cursorPos(event) {
$("#info").empty().append("pageX is: "+event.pageX);
}

$("#moveArea").mousemove(cursorPos(event));

最佳答案

就这样

$("#moveArea").mousemove(cursorPos);

由于您引用的是函数而不是调用它,因此无需传递参数。 jQuery 会为您调用它并将 event 传递给它。

关于javascript - jQuery 函数中的事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7028173/

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