gpt4 book ai didi

jQuery:将 $(this) 传递给函数

转载 作者:行者123 更新时间:2023-12-01 06:35:58 25 4
gpt4 key购买 nike

如何将 $(this) 对象传递给如下所示的函数

$('#selected').click(dosomething)

其中 dosomething 是函数。我尝试做类似的事情...

$('#selected').click(dosomething($(this)))

但似乎我的做法是错误的......

最佳答案

如果 dosomething 接受 jQuery 对象作为参数,那么你可以这样做:

$('#selected').click(function(){
dosomething($(this))
});

关于jQuery:将 $(this) 传递给函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16023382/

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