gpt4 book ai didi

jquery委托(delegate)传递变量

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

我想将被点击的对象传递到处理程序中。像这样:

$selector.delegate('.test','click',func1( ?? ));

//this is a reusable function
function func1(obj){
//do something with obj .....
}

所以在这种情况下,我应该将 $('.test') 传递到函数中。有人可以帮我一下吗,非常感谢。

最佳答案

试试这个

$selector.delegate('.test','click', function(e){
var obj = this;
//obj will point to the element you clicked.
});

关于jquery委托(delegate)传递变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6708646/

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