gpt4 book ai didi

jquery - 使用bind( type, [data], fn ) 和非内联函数

转载 作者:行者123 更新时间:2023-12-01 07:02:58 24 4
gpt4 key购买 nike

$("p").bind("click", function(event){
// code goes here
});

这很好理解。但是使用非内联函数并将事件作为参数传递的方法是什么?即:

$("p").bind("click", myFunction(event));

function myFunction(event) {
// code goes here
}

谢谢!

最佳答案

这里是:

$("p").bind("click", myFunction);

function myFunction(event) {
// code goes here
}

关于jquery - 使用bind( type, [data], fn ) 和非内联函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/859364/

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